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