public static enum Base64Mapper.Base64Decoder extends java.lang.Enum<Base64Mapper.Base64Decoder>
| Enum Constant and Description |
|---|
RFC2045 |
RFC4648 |
RFC4648_URLSAFE |
| Modifier and Type | Method and Description |
|---|---|
java.util.Base64.Decoder |
getDecoder() |
static Base64Mapper.Base64Decoder |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Base64Mapper.Base64Decoder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Base64Mapper.Base64Decoder RFC4648
public static final Base64Mapper.Base64Decoder RFC4648_URLSAFE
public static final Base64Mapper.Base64Decoder RFC2045
public static Base64Mapper.Base64Decoder[] values()
for (Base64Mapper.Base64Decoder c : Base64Mapper.Base64Decoder.values()) System.out.println(c);
public static Base64Mapper.Base64Decoder 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 namejava.lang.NullPointerException - if the argument is nullpublic java.util.Base64.Decoder getDecoder()