public static enum MimeEntity.Encoding extends Enum<MimeEntity.Encoding>
Enum Constant and Description |
---|
BASE64 |
BINARY |
EXTENSION |
IDENTITY_7BIT |
IDENTITY_8BIT |
NONE |
QUOTED_PRINTABLE |
Modifier and Type | Method and Description |
---|---|
static MimeEntity.Encoding |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MimeEntity.Encoding[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MimeEntity.Encoding NONE
public static final MimeEntity.Encoding QUOTED_PRINTABLE
public static final MimeEntity.Encoding BASE64
public static final MimeEntity.Encoding IDENTITY_7BIT
public static final MimeEntity.Encoding IDENTITY_8BIT
public static final MimeEntity.Encoding BINARY
public static final MimeEntity.Encoding EXTENSION
public static MimeEntity.Encoding[] values()
for (MimeEntity.Encoding c : MimeEntity.Encoding.values()) System.out.println(c);
public static MimeEntity.Encoding 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 © 2019–2021 HCL. All rights reserved.