|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjas.io.ParameterField
public class ParameterField
An object representing a parameter, with its own type, a short description and the min-max range when it is bounded.
Title: JAS
Description: Java Agent-based Simulation library
Copyright (C) 2002 Michele Sonnessa
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
Field Summary | |
---|---|
static int |
TYPE_BOOLEAN
A boolean field. |
static int |
TYPE_BROWSE
An string field representing a file path, used to browse the file system. |
static int |
TYPE_CHOOSER
A closed choose field. |
static int |
TYPE_DBL
A double field. |
static int |
TYPE_FLOAT
A float field. |
static int |
TYPE_INT
An integer field. |
static int |
TYPE_LONG
A long field. |
static int |
TYPE_SLIDER
An integer field, edited by a slider control. |
static int |
TYPE_STRING
A string field. |
Constructor Summary | |
---|---|
ParameterField(ParameterField field)
Construct a new parameter as a copy of another one. |
|
ParameterField(java.lang.String parameterName,
double min,
double max)
Construct a new TYPE_DBL parameter field with bounded interval. |
|
ParameterField(java.lang.String parameterName,
float min,
float max)
Construct a new TYPE_FLOAT parameter field with bounded interval. |
|
ParameterField(java.lang.String parameterName,
int parameterType)
Construct a new parameter field. |
|
ParameterField(java.lang.String parameterName,
int min,
int max)
Construct a new TYPE_INT parameter field with bounded interval. |
|
ParameterField(java.lang.String parameterName,
long min,
long max)
Construct a new TYPE_LONG parameter field with bounded interval. |
Method Summary | |
---|---|
void |
addChooserValue(java.lang.String value)
Add a choose to the list of chooses for a TYPE_CHOOSER field. |
int |
compareTo(java.lang.Object o)
|
boolean |
equals(java.lang.Object o)
Test if paramter has the same name and the same value. |
boolean |
getBool()
Return the current value for a TYPE_BOOLEAN field. |
java.lang.String |
getChoose()
Return the current choose for a TYPE_CHOOSER field. |
int |
getChooseIndex()
Return the current index value for a TYPE_CHOOSER field. |
java.util.List |
getChooseList()
Return the list of chooses for a TYPE_CHOOSER field. |
double |
getDbl()
Return the current value for a TYPE_DBL field. |
java.lang.String |
getDescription()
Return the current description attribute of the field. |
float |
getFloat()
Return the current value for a TYPE_FLOAT field. |
int |
getInt()
Return the current value for a TYPE_INT, TYPE_CHOOSER or TYPE_CHOOSER field. |
long |
getLong()
Return the current value for a TYPE_LONG field. |
java.lang.Object |
getMaxValue()
Return the maximum accepted value. |
java.lang.Object |
getMinValue()
Return the minimum accepted value. |
java.lang.String |
getName()
Return the name of the field. |
java.lang.Integer |
getOrder()
|
java.lang.String |
getStr()
Return the current value for a TYPE_STRING field. |
int |
getType()
Return the type of the field. |
static int |
getTypeValue(java.lang.String name)
Return the constant value corresponding with its string description. |
java.lang.Object |
getValue()
Return the current value of the field. |
void |
increaseOrder(int value)
|
void |
set(java.lang.Object value)
Set the current value of the field. |
void |
setBool(boolean value)
Set the current value for a TYPE_BOOLEAN field. |
void |
setChoose(int value)
Set the current value for a TYPE_CHOOSER field. |
void |
setChoose(java.lang.String value)
Set the current value for a TYPE_CHOOSER field. |
void |
setChooserValues(java.lang.String[] values)
Set the list of chooses for a TYPE_CHOOSER field. |
boolean |
setDbl(double value)
Set the current value for a TYPE_DBL field. |
void |
setDescription(java.lang.String description)
Set the description attribute to the field. |
boolean |
setFloat(float value)
Set the current value for a TYPE_FLOAT field. |
boolean |
setInt(int value)
Set the current value for a TYPE_INT, TYPE_CHOOSER or TYPE_CHOOSER field. |
boolean |
setLong(long value)
Set the current value for a TYPE_LONG field. |
void |
setMinMaxValues(java.lang.Object min,
java.lang.Object max)
Set the bounds for the interval of the field. |
void |
setOrder(int order)
|
void |
setStr(java.lang.String value)
Set the current value for a TYPE_STRING field. |
static java.lang.String[] |
supportedTypes()
A list of strings describing the types supported by the class. |
java.lang.String |
toString()
Return a string describing parameter. |
Methods inherited from class java.lang.Object |
---|
getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final int TYPE_BOOLEAN
public static final int TYPE_BROWSE
public static final int TYPE_CHOOSER
public static final int TYPE_DBL
public static final int TYPE_FLOAT
public static final int TYPE_INT
public static final int TYPE_LONG
public static final int TYPE_SLIDER
public static final int TYPE_STRING
Constructor Detail |
---|
public ParameterField(ParameterField field)
field
- The existing field to be copied.public ParameterField(java.lang.String parameterName, double min, double max)
parameterName
- The name of the field.min
- The minimum value accepted.max
- The maximum value accepted.public ParameterField(java.lang.String parameterName, float min, float max)
parameterName
- The name of the field.min
- The minimum value accepted.max
- The maximum value accepted.public ParameterField(java.lang.String parameterName, int parameterType)
parameterName
- The name of the field.parameterType
- The type of the field. One of the TYPE_ constants.public ParameterField(java.lang.String parameterName, int min, int max)
parameterName
- The name of the field.min
- The minimum value accepted.max
- The maximum value accepted.public ParameterField(java.lang.String parameterName, long min, long max)
parameterName
- The name of the field.min
- The minimum value accepted.max
- The maximum value accepted.Method Detail |
---|
public void addChooserValue(java.lang.String value)
value
- The item to be added.
java.lang.ClassCastException
- if the type is not compatible.public int compareTo(java.lang.Object o)
compareTo
in interface java.lang.Comparable
public boolean equals(java.lang.Object o)
equals
in class java.lang.Object
o
- The object to be compared.
public boolean getBool()
java.lang.ClassCastException
- if the type is not compatible.public java.lang.String getChoose()
java.lang.ClassCastException
- if the type is not compatible.public int getChooseIndex()
java.lang.ClassCastException
- if the type is not compatible.public java.util.List getChooseList()
java.lang.ClassCastException
- if the type is not compatible.public double getDbl()
java.lang.ClassCastException
- if the type is not compatible.public java.lang.String getDescription()
public float getFloat()
java.lang.ClassCastException
- if the type is not compatible.public int getInt()
java.lang.ClassCastException
- if the type is not compatible.public long getLong()
java.lang.ClassCastException
- if the type is not compatible.public java.lang.Object getMaxValue()
public java.lang.Object getMinValue()
public java.lang.String getName()
public java.lang.Integer getOrder()
public java.lang.String getStr()
java.lang.ClassCastException
- if the type is not compatible.public int getType()
public static int getTypeValue(java.lang.String name)
name
- The string representing one of the supported types.
public java.lang.Object getValue()
public void increaseOrder(int value)
public void set(java.lang.Object value)
value
- An object containing the current value to be set.
The class type must be the wrapper class according
to the type of the field or a right formatted string.public void setBool(boolean value)
value
- A boolean value.
java.lang.ClassCastException
- if the type is not compatible.public void setChoose(int value)
value
- The index of the list of chooses.
java.lang.ClassCastException
- if the type is not compatible.public void setChoose(java.lang.String value)
value
- The string corresponding to one of the list of chooses.
java.lang.ClassCastException
- if the type is not compatible.public void setChooserValues(java.lang.String[] values)
values
- A list of allowded chooses.
java.lang.ClassCastException
- if the type is not compatible.public boolean setDbl(double value)
value
- A double value.
java.lang.ClassCastException
- if the type is not compatible.public void setDescription(java.lang.String description)
description
- A short description for the field.public boolean setFloat(float value)
value
- A float value.
java.lang.ClassCastException
- if the type is not compatible.public boolean setInt(int value)
value
- An integer value.
java.lang.ClassCastException
- if the type is not compatible.public boolean setLong(long value)
value
- A long value.
java.lang.ClassCastException
- if the type is not compatible.public void setMinMaxValues(java.lang.Object min, java.lang.Object max)
min
- An object representing the minimum accepted value.max
- An object representing the maximum accepted value.public void setOrder(int order)
public void setStr(java.lang.String value)
value
- A String value.
java.lang.ClassCastException
- if the type is not compatible.public static java.lang.String[] supportedTypes()
public java.lang.String toString()
toString
in class java.lang.Object
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |