private static enum AvaticaSite.Dummy extends Enum<AvaticaSite.Dummy>
Not a valid value for a parameter.
As an enum, it is serializable by Jackson.
| Enum Constant and Description |
|---|
INSTANCE |
| Modifier and Type | Method and Description |
|---|---|
static AvaticaSite.Dummy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AvaticaSite.Dummy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AvaticaSite.Dummy INSTANCE
public static AvaticaSite.Dummy[] values()
for (AvaticaSite.Dummy c : AvaticaSite.Dummy.values()) System.out.println(c);
public static AvaticaSite.Dummy 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 © 2012–2016 The Apache Software Foundation. All rights reserved.