|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<CodecUtils>
com.amazonaws.util.CodecUtils
public enum CodecUtils
Codec internal utilities
Method Summary | |
---|---|
static byte[] |
toBytesDirect(java.lang.String singleOctets)
Returns a byte array representing the given string, truncating each character into a byte directly. |
static java.lang.String |
toStringDirect(byte[] bytes)
Returns a string representing the given byte array, treating each byte as a single octet character. |
static CodecUtils |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static CodecUtils[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Method Detail |
---|
public static CodecUtils[] values()
for (CodecUtils c : CodecUtils.values()) System.out.println(c);
public static CodecUtils valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is nullpublic static byte[] toBytesDirect(java.lang.String singleOctets)
java.lang.IllegalArgumentException
- if the input string contains any multi-octet characterpublic static java.lang.String toStringDirect(byte[] bytes)
|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |