public static class BrowserComponent.JSRef
- Object
- BrowserComponent.JSRef
A wrapper class for a Javascript value that is returned via the
com.codename1.util.Callback)
method. This supports all Javascript primitive types. See JSType for a list of the types.Constructors
public JSRef(String value, String type) | Creates a new JSRef object. |
Methods
public String getValue() | Gets the javascript value as a string. |
public BrowserComponent.JSType getJSType() | Returns the type of the value. |
public int getInt() | Gets the value as an integer. |
public double getDouble() | Gets teh value as a double. |
public boolean getBoolean() | Gets the value as a boolean. |
public String toString() | Returns a string representation of the object. |
public boolean isNull() | Checks if the variable is null |
Inherited methods
Constructor details
JSRef
public JSRef(String value, String type)Creates a new JSRef object.
Parameters
valueString- The string value of the javascript variable.
typeString- The string type of the variable as returned by the typeof operator.
Method details
getValue
public String getValue()Gets the javascript value as a string.
Returns
The string value of the reference.
getJSType
public BrowserComponent.JSType getJSType()Returns the type of the value.
getInt
public int getInt()Gets the value as an integer.
getDouble
public double getDouble()Gets teh value as a double.
getBoolean
public boolean getBoolean()Gets the value as a boolean.
toString
public String toString()Returns a string representation of the object. In general, the toString method returns a string that “textually represents” this object. The result should be a concise but informative representation that is easy for a person to read. It is recommended that all subclasses override this method.
The toString method for class Object returns a string consisting of the name of the class of which the object is an instance, the at-sign character `@’, and the unsigned hexadecimal representation of the hash code of the object. In other words, this method returns a string equal to the value of:
getClass().getName() + ‘@’ + Integer.toHexString(hashCode())
isNull
public boolean isNull()Checks if the variable is null