public class Variant extends Object
Constructor and Description |
---|
Variant()
No args constructor for use in serialization
|
Variant(String stringValue,
Long integerValue,
Double doubleValue,
Boolean booleanValue) |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object other) |
Boolean |
getBooleanValue()
Asset property data of type Boolean (true or false).
|
Double |
getDoubleValue()
Asset property data of type double (floating point number).
|
Long |
getIntegerValue()
Asset property data of type integer (whole number).
|
String |
getStringValue()
Asset property data of type string (sequence of characters).
|
int |
hashCode() |
void |
setBooleanValue(Boolean booleanValue)
Asset property data of type Boolean (true or false).
|
void |
setDoubleValue(Double doubleValue)
Asset property data of type double (floating point number).
|
void |
setIntegerValue(Long integerValue)
Asset property data of type integer (whole number).
|
void |
setStringValue(String stringValue)
Asset property data of type string (sequence of characters).
|
String |
toString() |
Variant |
withBooleanValue(Boolean booleanValue) |
Variant |
withDoubleValue(Double doubleValue) |
Variant |
withIntegerValue(Long integerValue) |
Variant |
withStringValue(String stringValue) |
public String getStringValue()
public void setStringValue(String stringValue)
public Long getIntegerValue()
public void setIntegerValue(Long integerValue)
public Double getDoubleValue()
public void setDoubleValue(Double doubleValue)
public Boolean getBooleanValue()
public void setBooleanValue(Boolean booleanValue)