public enum InfoType extends Enum<InfoType>
| Enum Constant and Description |
|---|
INFO_1 |
INFO_2 |
INFO_3 |
INFO_4 |
INFO_5 |
INFO_6 |
INFO_7 |
| Modifier and Type | Method and Description |
|---|---|
static InfoType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InfoType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InfoType INFO_1
public static final InfoType INFO_2
public static final InfoType INFO_3
public static final InfoType INFO_4
public static final InfoType INFO_5
public static final InfoType INFO_6
public static final InfoType INFO_7
public static InfoType[] values()
for (InfoType c : InfoType.values()) System.out.println(c);
public static InfoType 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 © 2003–2020 eXo Platform SAS. All rights reserved.