SDO API

Uses of Interface
commonj.sdo.Property

Packages that use Property
commonj.sdo   
commonj.sdo.helper   
 

Uses of Property in commonj.sdo
 

Methods in commonj.sdo that return Property
 Property DataObject.getContainmentProperty()
          Return the Property of the data object containing this data object or null if there is no container.
 Property ChangeSummary.getOldContainmentProperty(DataObject dataObject)
          Returns the value of the containment property data object property at the point when logging began.
 Property Property.getOpposite()
          Returns the opposite Property if the Property is bi-directional or null otherwise.
 Property ChangeSummary.Setting.getProperty()
          Returns the property of the setting.
 Property Sequence.getProperty(int index)
          Returns the property for the given entry index.
 Property DataObject.getProperty(java.lang.String propertyName)
          Returns the named Property from the current instance properties, or null if not found.
 Property Type.getProperty(java.lang.String propertyName)
          Returns from all the Properties of this type, the one with the specified name.
 

Methods in commonj.sdo with parameters of type Property
 void Sequence.add(int index, Property property, java.lang.Object value)
          Adds a new entry with the specified property and value at the specified entry index.
 boolean Sequence.add(Property property, java.lang.Object value)
          Adds a new entry with the specified property and value to the end of the entries.
 DataObject DataObject.createDataObject(Property property)
          Returns a new data object contained by this object using the specified property, which must be a containment property.
 DataObject DataObject.createDataObject(Property property, Type type)
          Returns a new data object contained by this object using the specified property, which must be of containment type.
 java.lang.Object DataObject.get(Property property)
          Returns the value of the given property of this object.
 java.math.BigDecimal DataObject.getBigDecimal(Property property)
          Returns the value of the specified BigDecimal property.
 java.math.BigInteger DataObject.getBigInteger(Property property)
          Returns the value of the specified BigInteger property.
 boolean DataObject.getBoolean(Property property)
          Returns the value of the specified boolean property.
 byte DataObject.getByte(Property property)
          Returns the value of the specified byte property.
 byte[] DataObject.getBytes(Property property)
          Returns the value of the specified byte[] property.
 char DataObject.getChar(Property property)
          Returns the value of the specified char property.
 DataObject DataObject.getDataObject(Property property)
          Returns the value of the specified DataObject property.
 java.util.Date DataObject.getDate(Property property)
          Returns the value of the specified Date property.
 double DataObject.getDouble(Property property)
          Returns the value of the specified double property.
 float DataObject.getFloat(Property property)
          Returns the value of the specified float property.
 int DataObject.getInt(Property property)
          Returns the value of the specified int property.
 java.util.List DataObject.getList(Property property)
          Returns the value of the specified List property.
 long DataObject.getLong(Property property)
          Returns the value of the specified long property.
 ChangeSummary.Setting ChangeSummary.getOldValue(DataObject dataObject, Property property)
          Returns a setting for the specified property representing the property value of the given dataObject at the point when logging began.
 Sequence DataObject.getSequence(Property property)
          Returns the value of the specified Sequence property.
 short DataObject.getShort(Property property)
          Returns the value of the specified short property.
 java.lang.String DataObject.getString(Property property)
          Returns the value of the specified String property.
 boolean DataObject.isSet(Property property)
          Returns whether the property of the object is considered to be set.
 void DataObject.set(Property property, java.lang.Object value)
          Sets the value of the given property of the object to the new value.
 void DataObject.setBigDecimal(Property property, java.math.BigDecimal value)
          Sets the value of the specified BigDecimal property, to the specified value.
 void DataObject.setBigInteger(Property property, java.math.BigInteger value)
          Sets the value of the specified BigInteger property, to the specified value.
 void DataObject.setBoolean(Property property, boolean value)
          Sets the value of the specified boolean property, to the specified value.
 void DataObject.setByte(Property property, byte value)
          Sets the value of the specified byte property, to the specified value.
 void DataObject.setBytes(Property property, byte[] value)
          Sets the value of the specified byte[] property, to the specified value.
 void DataObject.setChar(Property property, char value)
          Sets the value of the specified char property, to the specified value.
 void DataObject.setDataObject(Property property, DataObject value)
          Sets the value of the specified DataObject property, to the specified value.
 void DataObject.setDate(Property property, java.util.Date value)
          Sets the value of the specified Date property, to the specified value.
 void DataObject.setDouble(Property property, double value)
          Sets the value of the specified double property, to the specified value.
 void DataObject.setFloat(Property property, float value)
          Sets the value of the specified float property, to the specified value.
 void DataObject.setInt(Property property, int value)
          Sets the value of the specified int property, to the specified value.
 void DataObject.setList(Property property, java.util.List value)
          Sets the value of the specified List property, to the specified value.
 void DataObject.setLong(Property property, long value)
          Sets the value of the specified long property, to the specified value.
 void DataObject.setShort(Property property, short value)
          Sets the value of the specified short property, to the specified value.
 void DataObject.setString(Property property, java.lang.String value)
          Sets the value of the specified String property, to the specified value.
 void DataObject.unset(Property property)
          Unsets the property of the object.
 

Uses of Property in commonj.sdo.helper
 

Methods in commonj.sdo.helper that return Property
 Property XSDHelper.getGlobalProperty(java.lang.String uri, java.lang.String propertyName, boolean isElement)
          Returns the Property defined by the named global element or attribute in the targetNamespace uri, or null if not found.
 

Methods in commonj.sdo.helper with parameters of type Property
 java.lang.String XSDHelper.getAppinfo(Property property, java.lang.String source)
          Return the content of the appinfo declared for this Property and source.
 java.lang.String XSDHelper.getLocalName(Property property)
          Returns the local name as declared in the XSD.
 java.lang.String XSDHelper.getNamespaceURI(Property property)
          Returns the namespace URI as declared in the XSD.
 boolean XSDHelper.isAttribute(Property property)
          Returns true if the property is declared as an attribute in the XSD.
 boolean XSDHelper.isElement(Property property)
          Returns true if the property is declared as an element in the XSD.
 


SDO API

-