Package | Description |
---|---|
commonj.sdo | |
commonj.sdo.helper |
Modifier and Type | Method and Description |
---|---|
Property |
DataObject.getContainmentProperty()
Return the Property of the
data object containing this data object
or null if there is no container. |
Property |
DataObject.getInstanceProperty(String propertyName)
Returns the named Property from the current instance properties,
or null if not found.
|
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(String propertyName)
Deprecated.
replaced by
DataObject.getInstanceProperty(String) in 2.1.0 |
Property |
Type.getProperty(String propertyName)
Returns from
all the Properties of this type, the one with the specified name. |
Modifier and Type | Method and Description |
---|---|
void |
Sequence.add(int index,
Property property,
Object value)
Adds a new entry with the specified property and value
at the specified entry index.
|
boolean |
Sequence.add(Property property,
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 . |
Object |
DataObject.get(Property property)
Returns the value of the given property of this object.
|
Object |
Property.get(Property property)
Returns the value of the specified instance property of this Property.
|
Object |
Type.get(Property property)
Returns the value of the specified instance property of this Type.
|
BigDecimal |
DataObject.getBigDecimal(Property property)
Returns the value of the specified
BigDecimal property. |
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. |
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. |
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)
|
Sequence |
DataObject.getSequence(Property property)
Deprecated.
in 2.1.0.
|
short |
DataObject.getShort(Property property)
Returns the value of the specified
short property. |
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,
Object value)
Sets the value of the given property of the object to the new value.
|
void |
DataObject.setBigDecimal(Property property,
BigDecimal value)
Sets the value of the specified
BigDecimal property, to the specified value. |
void |
DataObject.setBigInteger(Property property,
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,
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,
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,
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.
|
Modifier and Type | Method and Description |
---|---|
Property |
TypeHelper.defineOpenContentProperty(String uri,
DataObject property)
Define the DataObject as a Property for setting open content.
|
Property |
XSDHelper.getGlobalProperty(String uri,
String propertyName,
boolean isElement)
Returns the Property defined by the named global element or attribute
in the targetNamespace uri, or null if not found.
|
Property |
TypeHelper.getOpenContentProperty(String uri,
String propertyName)
Get the open content (global) Property with the specified uri and name, or null
if not found.
|
Modifier and Type | Method and Description |
---|---|
Object |
DataHelper.convert(Property property,
Object value)
|
String |
XSDHelper.getAppinfo(Property property,
String source)
Return the content of the appinfo declared for this Property and source.
|
String |
XSDHelper.getLocalName(Property property)
Returns the local name as declared in the XSD.
|
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.
|
Copyright © 2019 The Apache Software Foundation. All rights reserved.