public enum EncodingAlgorithm extends Enum<EncodingAlgorithm>
| Enum Constant and Description |
|---|
BASE64 |
| Modifier and Type | Method and Description |
|---|---|
String |
getAlgorithmName() |
EncodingService |
getEncodingService() |
static EncodingAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EncodingAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EncodingAlgorithm BASE64
public static EncodingAlgorithm[] values()
for (EncodingAlgorithm c : EncodingAlgorithm.values()) System.out.println(c);
public static EncodingAlgorithm 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 nullpublic String getAlgorithmName()
public EncodingService getEncodingService()
Copyright © 2020. All rights reserved.