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