|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.codehaus.jackson.io.SerializedString
public class SerializedString
String token that can lazily serialize String contained and then reuse that serialization later on. This is similar to JDBC prepared statements, for example, in that instances should only be created when they are used more than use; prime candidates are various serializers.
Class is final for performance reasons and since this is not designed to be extensible or customizable (customizations would occur in calling code)
Field Summary | |
---|---|
protected char[] |
_quotedChars
|
protected byte[] |
_quotedUTF8Ref
|
protected byte[] |
_unquotedUTF8Ref
|
protected String |
_value
|
Constructor Summary | |
---|---|
SerializedString(String v)
|
Method Summary | |
---|---|
char[] |
asQuotedChars()
Returns JSON quoted form of the String, as character array. |
byte[] |
asQuotedUTF8()
Accessor for accessing value as is (without JSON quoting) encoded using UTF-8 encoding. |
byte[] |
asUnquotedUTF8()
Accessor for accessing value that has been quoted using JSON quoting rules, and encoded using UTF-8 encoding. |
int |
charLength()
Returns length of the String as characters |
boolean |
equals(Object o)
|
String |
getValue()
Returns unquoted String that this object represents (and offers serialized forms for) |
int |
hashCode()
|
String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
protected final String _value
protected byte[] _quotedUTF8Ref
protected byte[] _unquotedUTF8Ref
protected char[] _quotedChars
Constructor Detail |
---|
public SerializedString(String v)
Method Detail |
---|
public final String getValue()
SerializableString
getValue
in interface SerializableString
public final int charLength()
charLength
in interface SerializableString
public final char[] asQuotedChars()
SerializableString
asQuotedChars
in interface SerializableString
public final byte[] asUnquotedUTF8()
asUnquotedUTF8
in interface SerializableString
public final byte[] asQuotedUTF8()
asQuotedUTF8
in interface SerializableString
public final String toString()
toString
in class Object
public final int hashCode()
hashCode
in class Object
public final boolean equals(Object o)
equals
in class Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |