Package liquibase

Class AbstractExtensibleObject

    • Constructor Detail

      • AbstractExtensibleObject

        public AbstractExtensibleObject()
      • AbstractExtensibleObject

        public AbstractExtensibleObject​(Map<String,​?> values)
        Creates a new object with the given attributes.
    • Method Detail

      • getAttributes

        public SortedSet<String> getAttributes()
        Description copied from interface: ExtensibleObject
        Return the names of all the set attributes. If an attribute is null the name should not be returned. Should return both "standard" attributes and any custom attributes that have been set.
        Specified by:
        getAttributes in interface ExtensibleObject
      • has

        public boolean has​(String key)
        Return true if the given key is defined.
        Specified by:
        has in interface ExtensibleObject
      • get

        public <T> T get​(String attribute,
                         Class<T> type)
        Description copied from interface: ExtensibleObject
        Return the current value of the given attribute name, converted to the passed type. If the passed attribute is null or not defined, returns null. If you do not know the type to convert to, pass Object.class as the type. Conversion is done using ObjectUtil.convert(Object, Class). Should traverse dot-separated attributes.
        Specified by:
        get in interface ExtensibleObject
      • get

        public <T> T get​(String attribute,
                         T defaultValue)
        Description copied from interface: ExtensibleObject
        Works like ExtensibleObject.get(String, Class) but if the attribute is null or not defined, returns the passed defaultValue. Uses the type of defaultValue to determine the type to convert the current value to.

        If null is passed to the default value, no conversion of attribute is made if it is set. If traversing a dot-separated attribute path, return the default value if any along the path are null.

        Specified by:
        get in interface ExtensibleObject
      • get

        protected <T> T get​(String attribute,
                            T defaultValue,
                            Class<T> type)
      • getValuePath

        public List getValuePath​(String attributes,
                                 Class lastType)
        Description copied from interface: ExtensibleObject
        Traverses dot-separated attributes in the attributePath and returns a list containing all the intermediate values.
        Specified by:
        getValuePath in interface ExtensibleObject
        lastType - the type to convert the last value in the list to.
      • set

        public ExtensibleObject set​(String attribute,
                                    Object value)
        Description copied from interface: ExtensibleObject
        Sets the value of the given attribute. Subclasses can override this method to provide conversion business logic, but must remember that fields can be set directly when no type conversion is needed.
        Specified by:
        set in interface ExtensibleObject
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
      • equals

        public boolean equals​(Object obj)
        Default implementation counts objects equal if their describe() methods return equal strings.
        Overrides:
        equals in class Object