public static enum Base64Decoder.State extends Enum<Base64Decoder.State>
| Enum Constant and Description |
|---|
COMPLETE |
EQUALS_EXPECTED |
FIRST |
FOURTH |
SECOND |
THIRD |
| Modifier and Type | Method and Description |
|---|---|
static Base64Decoder.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Base64Decoder.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Base64Decoder.State FIRST
public static final Base64Decoder.State SECOND
public static final Base64Decoder.State THIRD
public static final Base64Decoder.State FOURTH
public static final Base64Decoder.State EQUALS_EXPECTED
public static final Base64Decoder.State COMPLETE
public static Base64Decoder.State[] values()
for (Base64Decoder.State c : Base64Decoder.State.values()) System.out.println(c);
public static Base64Decoder.State 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. All rights reserved.