public class ValueType extends java.lang.Object implements Cloneable
| Constructor and Description |
|---|
ValueType(int type) |
| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
clone()
Creates a copy of the object.
|
java.lang.String |
getClassNameOfValue() |
java.lang.Class |
getClassOfValue() |
DataType |
getDataType() |
DynStruct |
getDynClassOfValue() |
java.lang.String |
getSubtype() |
int |
getType() |
void |
setClassOfValue(java.lang.Class theClass) |
void |
setClassOfValue(DynStruct dynStrct) |
void |
setClassOfValue(java.lang.String theClassNameOfValue) |
void |
setType(DataType type) |
void |
setType(int type) |
java.lang.String |
toString() |
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitcloneQuietly, cloneQuietlypublic void setType(int type)
public void setType(DataType type)
public java.lang.String getSubtype()
public int getType()
public DataType getDataType()
public void setClassOfValue(java.lang.Class theClass)
public void setClassOfValue(DynStruct dynStrct)
public void setClassOfValue(java.lang.String theClassNameOfValue)
public java.lang.String getClassNameOfValue()
public DynStruct getDynClassOfValue()
public java.lang.Class getClassOfValue()
public java.lang.String toString()
toString in class java.lang.Objectpublic java.lang.Object clone()
throws java.lang.CloneNotSupportedException
Cloneableclone in class java.lang.Objectjava.lang.CloneNotSupportedException - if the instance of the object cannot
be cloned. As this is extending Cloneable so its sure
it implements it, so this exception may be used for problems on specific
object instances.Object#clone()}.