public enum EncodeDecodeTypes extends java.lang.Enum<EncodeDecodeTypes>
Enum Constant and Description |
---|
BASE64 |
BIGINTEGER16 |
HEX |
Modifier and Type | Method and Description |
---|---|
static EncodeDecodeTypes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EncodeDecodeTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EncodeDecodeTypes BASE64
public static final EncodeDecodeTypes BIGINTEGER16
public static final EncodeDecodeTypes HEX
public static EncodeDecodeTypes[] values()
for (EncodeDecodeTypes c : EncodeDecodeTypes.values()) System.out.println(c);
public static EncodeDecodeTypes 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 nullCopyright © 2005-2020 Apache Software Foundation. All Rights Reserved.