public static enum Droplet.Status extends Enum<Droplet.Status>
Modifier and Type | Method and Description |
---|---|
static Droplet.Status |
fromValue(String value) |
static Droplet.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Droplet.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Droplet.Status NEW
public static final Droplet.Status ACTIVE
public static final Droplet.Status ARCHIVE
public static final Droplet.Status OFF
public static Droplet.Status[] values()
for (Droplet.Status c : Droplet.Status.values()) System.out.println(c);
public static Droplet.Status 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 nullpublic static Droplet.Status fromValue(String value)
Copyright © 2009-2016 The Apache Software Foundation. All Rights Reserved.