Package helma.objectmodel
Interface IProperty
- All Known Implementing Classes:
Property
,TransientProperty
public interface IProperty
Interface that is implemented by node properties.
-
Field Details
-
STRING
static final int STRING- See Also:
-
BOOLEAN
static final int BOOLEAN- See Also:
-
DATE
static final int DATE- See Also:
-
INTEGER
static final int INTEGER- See Also:
-
FLOAT
static final int FLOAT- See Also:
-
NODE
static final int NODE- See Also:
-
JAVAOBJECT
static final int JAVAOBJECT- See Also:
-
-
Method Details
-
getName
String getName()- Returns:
- ...
-
getType
int getType()- Returns:
- ...
-
getValue
Object getValue()- Returns:
- ...
-
getNodeValue
INode getNodeValue()- Returns:
- ...
-
getStringValue
String getStringValue()- Returns:
- ...
-
getBooleanValue
boolean getBooleanValue()- Returns:
- ...
-
getIntegerValue
long getIntegerValue()- Returns:
- ...
-
getFloatValue
double getFloatValue()- Returns:
- ...
-
getDateValue
Date getDateValue()- Returns:
- ...
-
getJavaObjectValue
Object getJavaObjectValue()- Returns:
- ...
-