|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IDataAccess
Interface to access data by name through getXXX and setXXX methods.
Method Summary | |
---|---|
boolean |
getBoolean(java.lang.String name)
Gets the named data as a boolean. |
double |
getDouble(java.lang.String name)
Gets the named data as a double. |
float |
getFloat(java.lang.String name)
Gets the named data as a float. |
int |
getInt(java.lang.String name)
Gets the named data as an integer. |
java.util.Iterator |
getIterator()
Gets an iterator to all of the names of the named data. |
long |
getLong(java.lang.String name)
Gets the named data as a long. |
java.lang.Object |
getObject(java.lang.String strName)
Gets the named data as a Object. |
java.lang.String |
getString(java.lang.String name)
Gets the named data as a String. |
IXml |
getXml(java.lang.String name)
Gets the named data as a IXml. |
void |
setBoolean(java.lang.String name,
boolean value)
Sets the named data with the specified boolean value. |
void |
setDouble(java.lang.String name,
double value)
Sets the named data with the specified double value. |
void |
setFloat(java.lang.String name,
float value)
Sets the named data with the specified float value. |
void |
setInt(java.lang.String name,
int value)
Sets the named data with the specified integer value. |
void |
setLong(java.lang.String name,
long value)
Sets the named data with the specified long value. |
void |
setObject(java.lang.String strName,
java.lang.Object value)
Sets the named data with the specified Object value. |
void |
setString(java.lang.String name,
java.lang.String value)
Sets the named data with the specified String value. |
void |
setXml(java.lang.String name,
IXml value)
Sets the named data with the specified IXml value. |
Method Detail |
---|
boolean getBoolean(java.lang.String name)
name
- The name of the boolean value to get.
double getDouble(java.lang.String name)
name
- The name of the double value to get.
float getFloat(java.lang.String name)
name
- The name of the float value to get.
int getInt(java.lang.String name)
name
- The name of the integer value to get.
java.util.Iterator getIterator()
long getLong(java.lang.String name)
name
- The name of the long value to get.
java.lang.Object getObject(java.lang.String strName)
strName
- The name of the Object value to get.
java.lang.String getString(java.lang.String name)
name
- The name of the String value to get.
IXml getXml(java.lang.String name)
name
- The name of the IXml value to get.
void setBoolean(java.lang.String name, boolean value)
name
- The name of the value to set.value
- The value to set on the specified name.void setDouble(java.lang.String name, double value)
name
- The name of the value to set.value
- The value to set on the specified name.void setFloat(java.lang.String name, float value)
name
- The name of the value to set.value
- The value to set on the specified name.void setInt(java.lang.String name, int value)
name
- The name of the value to set.value
- The value to set on the specified name.void setLong(java.lang.String name, long value)
name
- The name of the value to set.value
- The value to set on the specified name.void setObject(java.lang.String strName, java.lang.Object value)
strName
- The name of the value to set.value
- The value to set on the specified name.void setString(java.lang.String name, java.lang.String value)
name
- The name of the value to set.value
- The value to set on the specified name.void setXml(java.lang.String name, IXml value)
name
- The name of the value to set.value
- The value to set on the specified name.
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |