public static enum StreamProvider.EncoderTypes extends java.lang.Enum<StreamProvider.EncoderTypes>
Enum Constant and Description |
---|
B_ENCODER |
BASE_64 |
BINARY_ENCODER |
BIT7_ENCODER |
BIT8_ENCODER |
Q_ENCODER |
QUOTED_PRINTABLE_ENCODER |
UU_ENCODER |
X_UU_ENCODER |
X_UUE |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getEncoder() |
static StreamProvider.EncoderTypes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StreamProvider.EncoderTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StreamProvider.EncoderTypes BASE_64
public static final StreamProvider.EncoderTypes B_ENCODER
public static final StreamProvider.EncoderTypes Q_ENCODER
public static final StreamProvider.EncoderTypes BINARY_ENCODER
public static final StreamProvider.EncoderTypes BIT7_ENCODER
public static final StreamProvider.EncoderTypes BIT8_ENCODER
public static final StreamProvider.EncoderTypes QUOTED_PRINTABLE_ENCODER
public static final StreamProvider.EncoderTypes UU_ENCODER
public static final StreamProvider.EncoderTypes X_UU_ENCODER
public static final StreamProvider.EncoderTypes X_UUE
public static StreamProvider.EncoderTypes[] values()
for (StreamProvider.EncoderTypes c : StreamProvider.EncoderTypes.values()) System.out.println(c);
public static StreamProvider.EncoderTypes 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.lang.String getEncoder()