Package org.mozilla.javascript
Class UniqueTag
- java.lang.Object
- 
- org.mozilla.javascript.UniqueTag
 
- 
- All Implemented Interfaces:
- java.io.Serializable
 
 public final class UniqueTag extends java.lang.Object implements java.io.SerializableClass instances represent serializable tags to mark special Object values.Compatibility note: under jdk 1.1 use org.mozilla.javascript.serialize.ScriptableInputStream to read serialized instances of UniqueTag as under this JDK version the default ObjectInputStream would not restore them correctly as it lacks support for readResolve method - See Also:
- Serialized Form
 
- 
- 
Field SummaryFields Modifier and Type Field Description static UniqueTagDOUBLE_MARKTag to indicate that a object represents "double" with the real value stored somewhere else.static UniqueTagNOT_FOUNDTag to mark non-existing values.static UniqueTagNULL_VALUETag to distinguish between uninitialized and null values.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ObjectreadResolve()java.lang.StringtoString()
 
- 
- 
- 
Field Detail- 
NOT_FOUNDpublic static final UniqueTag NOT_FOUND Tag to mark non-existing values.
 - 
NULL_VALUEpublic static final UniqueTag NULL_VALUE Tag to distinguish between uninitialized and null values.
 - 
DOUBLE_MARKpublic static final UniqueTag DOUBLE_MARK Tag to indicate that a object represents "double" with the real value stored somewhere else.
 
- 
 
-