Package | Description |
---|---|
casa |
The casa package is the main package for CASA (Collaborative Agent System
Architecture), which is an infrastructure for agent based systems.
|
casa.interfaces |
Contains classes for important
interfaces used in CASA. |
casa.util |
Contains classes implementing various utility class for CASA.
|
Modifier and Type | Method and Description |
---|---|
boolean |
Agent.getBooleanProperty(String name)
Retrieves the boolean property, returning it to the user.
|
boolean |
AdvertisementDescriptor.getBooleanProperty(String name)
Retrieves the boolean property, returning it to the user.
|
double |
Agent.getDoubleProperty(String name)
Retrieves the double precision floating point property, returning it to
the user.
|
double |
AdvertisementDescriptor.getDoubleProperty(String name)
Retrieves the double precision floating point property, returning it to
the user.
|
float |
Agent.getFloatProperty(String name)
Retrieves the floating point property, returning it to the user.
|
float |
AdvertisementDescriptor.getFloatProperty(String name)
Retrieves the floating point property, returning it to the user.
|
int |
Agent.getIntegerProperty(String name)
Retrieves the integer property, returning it to the user.
|
int |
AdvertisementDescriptor.getIntegerProperty(String name)
Retrieves the integer property, returning it to the user.
|
long |
Agent.getLongProperty(String name)
Retrieves the long integer property, returning it to the user.
|
long |
AdvertisementDescriptor.getLongProperty(String name)
Retrieves the long integer property, returning it to the user.
|
String |
Agent.getStringProperty(String name)
Retrieves the String property, returning it to the user.
|
String |
AdvertisementDescriptor.getStringProperty(String name)
Retrieves the String property, returning it to the user.
|
Modifier and Type | Method and Description |
---|---|
boolean |
AgentInterface.getBooleanProperty(String name)
Retrieves the boolean property, returning it to the user.
|
double |
AgentInterface.getDoubleProperty(String name)
Retrieves the double precision floating point property, returning it to
the user.
|
float |
AgentInterface.getFloatProperty(String name)
Retrieves the floating point property, returning it to the user.
|
int |
AgentInterface.getIntegerProperty(String name)
Retrieves the integer property, returning it to the user.
|
long |
AgentInterface.getLongProperty(String name)
Retrieves the long integer property, returning it to the user.
|
String |
AgentInterface.getStringProperty(String name)
Retrieves the String property, returning it to the user.
|
Modifier and Type | Method and Description |
---|---|
static Property |
Property.fromString(String property)
Creates a
Property that is decoded from the given
String and returns it. |
boolean |
Property.getBoolean()
Retrieves the boolean value of the property.
|
boolean |
PropertiesMap.getBoolean(String propertyName)
Retrieves the boolean property from the map, returning it to the user.
|
byte |
Property.getByte()
Retrieves the byte value of the property.
|
byte |
PropertiesMap.getByte(String propertyName)
Retrieves the byte property from the map, returning it to the user.
|
char |
Property.getChar()
Retrieves the char value of the property.
|
char |
PropertiesMap.getChar(String propertyName)
Retrieves the char property from the map, returning it to the user.
|
double |
Property.getDouble()
Retrieves the double precision floating point value of the property.
|
double |
PropertiesMap.getDouble(String propertyName)
Retrieves the double precision floating point property from the map,
returning it to the user.
|
float |
Property.getFloat()
Retrieves the floating point value of the property.
|
float |
PropertiesMap.getFloat(String propertyName)
Retrieves the floating point property from the map, returning it to the
user.
|
int |
Property.getInteger()
Retrieves the integer value of the property.
|
int |
PropertiesMap.getInteger(String propertyName)
Retrieves the integer property from the map, returning it to the user.
|
long |
Property.getLong()
Retrieves the long integer value of the property.
|
long |
PropertiesMap.getLong(String propertyName)
Retrieves the long integer property from the map, returning it to the
user.
|
short |
Property.getShort()
Retrieves the short value of the property.
|
short |
PropertiesMap.getShort(String propertyName)
Retrieves the short property from the map, returning it to the user.
|
String |
Property.getString()
Retrieves the string value of the property.
|
String |
UserMap.getString(String knownUsersName)
Retrieves the String knownUsers from the map, returning it to the user.
|
String |
PropertiesMap.getString(String propertyName)
Retrieves the String property from the map, returning it to the user.
|
void |
Property.setBoolean(boolean value)
Sets the boolean value of the property.
|
void |
Property.setBtye(byte value)
Sets the byte value of the property.
|
void |
Property.setChar(char value)
Sets the char value of the property.
|
void |
Property.setDouble(double value)
Sets the double precision floating point value of the property.
|
void |
Property.setFloat(float value)
Sets the floating point value of the property.
|
void |
Property.setInteger(int value)
Sets the integer value of the property.
|
void |
Property.setLong(long value)
Sets the long integer value of the property.
|
void |
Property.setShort(short value)
Sets the short value of the property.
|
void |
Property.setString(String value)
Sets the string value of the property.
|