Package commonj.sdo
Interface Type
-
public interface Type
A representation of the type of aproperty
of adata object
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Object
get(Property property)
Returns the value of the specified instance property of this Type.java.util.List
getAliasNames()
Return a list of alias names for this Type.java.util.List
getBaseTypes()
Returns the List of base Types for this Type.java.util.List
getDeclaredProperties()
Returns the Properties declared in this Type as opposed to those declared in base Types.java.lang.Class
getInstanceClass()
Returns the Java class that this type represents.java.util.List
getInstanceProperties()
Returns a read-only List of instance Properties available on this Type.java.lang.String
getName()
Returns the name of the type.java.util.List
getProperties()
Returns the List of theProperties
of this type.Property
getProperty(java.lang.String propertyName)
Returns fromall the Properties
of this type, the one with the specified name.java.lang.String
getURI()
Returns the namespace URI of the type.boolean
isAbstract()
Indicates if this Type is abstract.boolean
isDataType()
Indicates if this Type specifies DataTypes (true) or DataObjects (false).boolean
isInstance(java.lang.Object object)
Returns whether the specified object is an instance of this type.boolean
isOpen()
Indicates if this Type allows any form of open content.boolean
isSequenced()
Indicates if this Type specifies Sequenced DataObjects.
-
-
-
Method Detail
-
getName
java.lang.String getName()
Returns the name of the type.- Returns:
- the type name.
-
getURI
java.lang.String getURI()
Returns the namespace URI of the type.- Returns:
- the namespace URI.
-
getInstanceClass
java.lang.Class getInstanceClass()
Returns the Java class that this type represents.- Returns:
- the Java class.
-
isInstance
boolean isInstance(java.lang.Object object)
Returns whether the specified object is an instance of this type.- Parameters:
object
- the object in question.- Returns:
true
if the object is an instance.- See Also:
Class.isInstance(java.lang.Object)
-
getProperties
java.util.List getProperties()
Returns the List of theProperties
of this type.The expression
type.getProperties().indexOf(property)
yields the property's index relative to this type. As such, these expressions are equivalent:dataObject.
get
(i) dataObject.get
((Property)dataObject.getType().getProperties().get(i));- Returns:
- the Properties of the type.
- See Also:
Property.getContainingType()
-
getProperty
Property getProperty(java.lang.String propertyName)
Returns fromall the Properties
of this type, the one with the specified name. As such, these expressions are equivalent:dataObject.
get
("name") dataObject.get
(dataObject.getType().getProperty("name"))- Returns:
- the Property with the specified name.
- See Also:
getProperties()
-
isDataType
boolean isDataType()
Indicates if this Type specifies DataTypes (true) or DataObjects (false). When false, any object that is an instance of this type also implements the DataObject interface. True for simple types such as Strings and numbers. For any object:isInstance(object) && !isDataType() implies DataObject.class.isInstance(object) returns true.
- Returns:
- true if Type specifies DataTypes, false for DataObjects.
-
isOpen
boolean isOpen()
Indicates if this Type allows any form of open content. If false, dataObject.getInstanceProperties() must be the same as dataObject.getType().getProperties() for any DataObject dataObject of this Type.- Returns:
- true if this Type allows open content.
-
isSequenced
boolean isSequenced()
Indicates if this Type specifies Sequenced DataObjects. Sequenced DataObjects are used when the order of values between Properties must be preserved. When true, a DataObject will return a Sequence. For example,Sequence elements = dataObject.
getSequence
();- Returns:
- true if this Type specifies Sequenced DataObjects.
-
isAbstract
boolean isAbstract()
Indicates if this Type is abstract. If true, this Type cannot be instantiated. Abstract types cannot be used in DataObject or DataFactory create methods.- Returns:
- true if this Type is abstract.
-
getBaseTypes
java.util.List getBaseTypes()
Returns the List of base Types for this Type. The List is empty if there are no base Types. XSD, , and Java extends keyword are mapped to this list. - Returns:
- the List of base Types for this Type.
-
getDeclaredProperties
java.util.List getDeclaredProperties()
Returns the Properties declared in this Type as opposed to those declared in base Types.- Returns:
- the Properties declared in this Type.
-
getAliasNames
java.util.List getAliasNames()
Return a list of alias names for this Type.- Returns:
- a list of alias names for this Type.
-
getInstanceProperties
java.util.List getInstanceProperties()
Returns a read-only List of instance Properties available on this Type.This list includes, at a minimum, any open content properties (extensions) added to the object before
defining the Type's Type
. Implementations may, but are not required to in the 2.1 version of SDO, provide additional instance properties.- Returns:
- the List of instance Properties on this Type.
-
get
java.lang.Object get(Property property)
Returns the value of the specified instance property of this Type.- Parameters:
property
- one of the properties returned bygetInstanceProperties()
.- Returns:
- the value of the specified property.
- See Also:
DataObject.get(Property)
-
-