Package liquibase
Class AbstractExtensibleObject
java.lang.Object
liquibase.AbstractExtensibleObject
- All Implemented Interfaces:
Cloneable
,ExtensibleObject
- Direct Known Subclasses:
AbstractLogger
,AbstractPlugin
,AbstractResourceAccessor
,CompositeUIService
,ConsoleUIService
,LoggerUIService
Convenience class implementing ExtensibleObject. It is usually easiest to extend this class rather than implement all of ExtensibleObject yourself.
-
Constructor Summary
ConstructorDescriptionAbstractExtensibleObject
(Map<String, ?> values) Creates a new object with the given attributes. -
Method Summary
Modifier and TypeMethodDescriptionclone()
ExposeCloneable#clone()
as publicdescribe()
Output a full description of this object.boolean
Default implementation counts objects equal if their describe() methods return equal strings.<T> T
Return the current value of the given attribute name, converted to the passed type.<T> T
Works likeExtensibleObject.get(String, Class)
but if the attribute is null or not defined, returns the passed defaultValue.protected <T> T
Return the names of all the set attributes.protected Object
getFieldValue
(String attribute, Class type) Returns theObjectMetaData
describing this instance.getValuePath
(String attributes, Class lastType) Traverses dot-separated attributes in the attributePath and returns a list containing all the intermediate values.boolean
Return true if the given key is defined.int
hashCode()
Sets the value of the given attribute.toString()
-
Constructor Details
-
AbstractExtensibleObject
public AbstractExtensibleObject() -
AbstractExtensibleObject
Creates a new object with the given attributes.
-
-
Method Details
-
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 interfaceExtensibleObject
-
getObjectMetaData
Description copied from interface:ExtensibleObject
Returns theObjectMetaData
describing this instance.- Specified by:
getObjectMetaData
in interfaceExtensibleObject
-
has
Return true if the given key is defined.- Specified by:
has
in interfaceExtensibleObject
-
get
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 usingObjectUtil.convert(Object, Class)
. Should traverse dot-separated attributes.- Specified by:
get
in interfaceExtensibleObject
-
get
Description copied from interface:ExtensibleObject
Works likeExtensibleObject.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 interfaceExtensibleObject
-
get
-
getValuePath
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 interfaceExtensibleObject
lastType
- the type to convert the last value in the list to.
-
getFieldValue
-
set
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 interfaceExtensibleObject
-
describe
Description copied from interface:ExtensibleObject
Output a full description of this object. Should include all attributes and values.- Specified by:
describe
in interfaceExtensibleObject
-
toString
-
hashCode
public int hashCode() -
equals
Default implementation counts objects equal if their describe() methods return equal strings. -
clone
Description copied from interface:ExtensibleObject
ExposeCloneable#clone()
as public- Specified by:
clone
in interfaceExtensibleObject
- Overrides:
clone
in classObject
-