|
||||||||||
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(String singleOctets)
Returns a byte array representing the given string, truncating each character into a byte directly. |
static String |
toStringDirect(byte[] bytes)
Returns a string representing the given byte array, treating each byte as a single octet character. |
static CodecUtils |
valueOf(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 |
---|
clone, compareTo, equals, finalize, 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(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic static byte[] toBytesDirect(String singleOctets)
IllegalArgumentException
- if the input string contains any multi-octet characterpublic static String toStringDirect(byte[] bytes)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |