public static enum Base64Codec.Option extends Enum<Base64Codec.Option>
Enum Constant and Description |
---|
FILENAME
RFC4648 filename format:
an unbroken string using filename-safe symbolic encoding, without pad characters.
|
RFC1421
RFC-1421: 64 characters, CR+LF separator
|
UNBROKEN
Produces an unbroken string of base-64 characters.
|
Modifier and Type | Method and Description |
---|---|
static Base64Codec.Option |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Base64Codec.Option[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Base64Codec.Option UNBROKEN
public static final Base64Codec.Option RFC1421
public static final Base64Codec.Option FILENAME
public static Base64Codec.Option[] values()
for (Base64Codec.Option c : Base64Codec.Option.values()) System.out.println(c);
public static Base64Codec.Option valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null