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