public static enum PollableSource.Status extends Enum<PollableSource.Status>
| Modifier and Type | Method and Description | 
|---|---|
| static PollableSource.Status | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static PollableSource.Status[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final PollableSource.Status READY
public static final PollableSource.Status BACKOFF
public static PollableSource.Status[] values()
for (PollableSource.Status c : PollableSource.Status.values()) System.out.println(c);
public static PollableSource.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 nullCopyright © 2009-2017 Apache Software Foundation. All Rights Reserved.