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