org.opensourcephysics.ejs.control.value
Class StringValue

java.lang.Object
  extended by org.opensourcephysics.ejs.control.value.Value
      extended by org.opensourcephysics.ejs.control.value.StringValue

public class StringValue
extends Value

A StringValue is a Value object that holds a String value.

See Also:
Value

Field Summary
 java.lang.String value
           
 
Constructor Summary
StringValue(java.lang.String _val)
          Constructor StringValue
 
Method Summary
 boolean getBoolean()
          Returns the value of the variable as a boolean
 double getDouble()
          Returns the value of the variable as a double
 int getInteger()
          Returns the value of the variable as an int
 java.lang.Object getObject()
          Returns the value of the variable as an Object.
 java.lang.String getString()
          Returns the value of the variable as a String
 
Methods inherited from class org.opensourcephysics.ejs.control.value.Value
cloneValue, copyValue, parseConstant, parseConstantOrArray, removeScapes, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

value

public java.lang.String value
Constructor Detail

StringValue

public StringValue(java.lang.String _val)
Constructor StringValue

Parameters:
_val -
Method Detail

getBoolean

public boolean getBoolean()
Description copied from class: Value
Returns the value of the variable as a boolean

Specified by:
getBoolean in class Value

getInteger

public int getInteger()
Description copied from class: Value
Returns the value of the variable as an int

Specified by:
getInteger in class Value

getDouble

public double getDouble()
Description copied from class: Value
Returns the value of the variable as a double

Specified by:
getDouble in class Value

getString

public java.lang.String getString()
Description copied from class: Value
Returns the value of the variable as a String

Specified by:
getString in class Value

getObject

public java.lang.Object getObject()
Description copied from class: Value
Returns the value of the variable as an Object. Ideal for arrays!

Specified by:
getObject in class Value