public static enum Base64.EncodingOption extends Enum<Base64.EncodingOption>
| Enum Constant and Description |
|---|
NOCARRIAGERETURN |
STANDARD |
USEURLSAFEENCODING |
| Modifier and Type | Method and Description |
|---|---|
static Base64.EncodingOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Base64.EncodingOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Base64.EncodingOption USEURLSAFEENCODING
public static final Base64.EncodingOption NOCARRIAGERETURN
public static final Base64.EncodingOption STANDARD
public static Base64.EncodingOption[] values()
for (Base64.EncodingOption c : Base64.EncodingOption.values()) System.out.println(c);
public static Base64.EncodingOption 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 nullCopyright © 2025 JBoss by Red Hat. All Rights Reserved.