boolean |
Document.getBoolean(java.lang.String fieldId) |
Returns the boolean value of the according BooleanProperty,
or an empty boolean (see getEmptyBoolean) if none set.
|
BooleanProperty |
Document.getBooleanProperty(java.lang.String name) |
Returns the BooleanProperty contained in this Document under the given name.
|
double |
Document.getDouble(java.lang.String fieldId) |
Returns the double value of the according DoubleProperty,
or an empty double (see getEmptyDouble) if none set.
|
DoubleProperty |
Document.getDoubleProperty(java.lang.String name) |
Returns the DoubleProperty contained in this Document under the given name.
|
float |
Document.getFloat(java.lang.String fieldId) |
Returns the float value of the according FloatProperty,
or an empty float (see getEmptyFloat) if none set.
|
FloatProperty |
Document.getFloatProperty(java.lang.String name) |
Returns the FloatProperty contained in this Document under the given name.
|
int |
Document.getInt(java.lang.String fieldId) |
Returns the int value of the according IntProperty,
or an empty int (see getEmptyInt) if none set.
|
IntProperty |
Document.getIntProperty(java.lang.String name) |
Returns the IntProperty contained in this Document under the given name.
|
java.util.List<Property> |
Document.getList(java.lang.String fieldId) |
Returns list of Property by fieldId.
|
ListProperty |
Document.getListProperty(java.lang.String name) |
Returns the ListProperty contained in this Document under the given name.
|
long |
Document.getLong(java.lang.String fieldId) |
Returns the long value of the according LongProperty,
or an empty long (see getEmptyLong) if none set.
|
LongProperty |
Document.getLongProperty(java.lang.String name) |
Returns the LongProperty contained in this Document under the given name.
|
Property |
Document.getProperty(java.lang.String name) |
Returns the Property contained in this Document under the given name.
|
java.lang.String |
Document.getString(java.lang.String fieldId) |
Returns the string value of the according StringProperty,
or empty string (see getEmptyString) if none set.
|
StringProperty |
Document.getStringProperty(java.lang.String name) |
Returns the StringProperty contained in this Document under the given name.
|