Enum Base64.DecodeTableFormat
- All Implemented Interfaces:
Serializable, Comparable<Base64.DecodeTableFormat>
- Enclosing class:
Base64
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionRepresents a joint approach, allowing a seamless decoding of both character sets, corresponding to either RFC 2045 Table 1: The Base64 Alphabet or RFC 4648 Table 2: The "URL and Filename safe" Base 64 Alphabet.Corresponds to the standard Base64 coding table, as specified in RFC 2045 Table 1: The Base64 Alphabet.Corresponds to the URL-safe Base64 coding table, as specified in RFC 4648 Table 2: The "URL and Filename safe" Base 64 Alphabet. -
Method Summary
Modifier and TypeMethodDescriptionstatic Base64.DecodeTableFormatReturns the enum constant of this type with the specified name.static Base64.DecodeTableFormat[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
STANDARD
Corresponds to the standard Base64 coding table, as specified in RFC 2045 Table 1: The Base64 Alphabet. -
URL_SAFE
Corresponds to the URL-safe Base64 coding table, as specified in RFC 4648 Table 2: The "URL and Filename safe" Base 64 Alphabet. -
MIXED
Represents a joint approach, allowing a seamless decoding of both character sets, corresponding to either RFC 2045 Table 1: The Base64 Alphabet or RFC 4648 Table 2: The "URL and Filename safe" Base 64 Alphabet. This decoding table is used by default.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-