|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Base64Dialect>
org.jboss.netty.handler.codec.base64.Base64Dialect
public enum Base64Dialect
Enumeration of supported Base64 dialects.
The internal lookup tables in this class has been derived from Robert Harder's Public Domain Base64 Encoder/Decoder.
Enum Constant Summary | |
---|---|
ORDERED
Special "ordered" dialect of Base64 described in RFC1940. |
|
STANDARD
Standard Base64 encoding as described in the Section 3 of RFC3548. |
|
URL_SAFE
Base64-like encoding that is URL-safe as described in the Section 4 of RFC3548. |
Method Summary | |
---|---|
static Base64Dialect |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Base64Dialect[] |
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 |
Enum Constant Detail |
---|
public static final Base64Dialect STANDARD
public static final Base64Dialect URL_SAFE
public static final Base64Dialect ORDERED
Method Detail |
---|
public static Base64Dialect[] values()
for (Base64Dialect c : Base64Dialect.values()) System.out.println(c);
public static Base64Dialect 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 null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |