public enum HSMCategory extends Enum<HSMCategory>
| Enum Constant and Description |
|---|
AUTHENTICATION |
MARKETING |
UTILITY |
| Modifier and Type | Method and Description |
|---|---|
static HSMCategory |
forValue(String value) |
String |
getCategory() |
String |
toJson() |
String |
toString() |
static HSMCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HSMCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HSMCategory AUTHENTICATION
public static final HSMCategory UTILITY
public static final HSMCategory MARKETING
public static HSMCategory[] values()
for (HSMCategory c : HSMCategory.values()) System.out.println(c);
public static HSMCategory 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 static HSMCategory forValue(String value)
public String toJson()
public String getCategory()
public String toString()
toString in class Enum<HSMCategory>Copyright © 2024. All rights reserved.