Enum AbstractPollingBinding.State
- java.lang.Object
- 
- java.lang.Enum<AbstractPollingBinding.State>
- 
- com.inductiveautomation.perspective.gateway.binding.AbstractPollingBinding.State
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<AbstractPollingBinding.State>
 - Enclosing class:
- AbstractPollingBinding<P>
 
 protected static enum AbstractPollingBinding.State extends java.lang.Enum<AbstractPollingBinding.State> 
- 
- 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static AbstractPollingBinding.StatevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AbstractPollingBinding.State[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
IDLEpublic static final AbstractPollingBinding.State IDLE 
 - 
SCHEDULEDpublic static final AbstractPollingBinding.State SCHEDULED 
 - 
RUNNINGpublic static final AbstractPollingBinding.State RUNNING 
 - 
SHUTDOWNpublic static final AbstractPollingBinding.State SHUTDOWN 
 
- 
 - 
Method Detail- 
valuespublic static AbstractPollingBinding.State[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AbstractPollingBinding.State c : AbstractPollingBinding.State.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static AbstractPollingBinding.State valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 
- 
 
-