StringSizeTerminatedpublic class StringSizeTerminated extends TextEncodedStringSizeTerminated Represents a String which is not delimited by null character with fixed text encoding.
This type of String will usually only be used when it is the last field within a frame, when reading the remainder of the byte array will
be read, when writing the frame will accommodate the required size for the String. The String will be encoded
using the default encoding regardless of what encoding may be specified in the framebody |
Methods Summary |
---|
public boolean | equals(java.lang.Object obj)
return obj instanceof StringSizeTerminated && super.equals(obj);
| protected java.lang.String | getTextEncodingCharSet()
return TextEncoding.CHARSET_ISO_8859_1;
|
|