Enum DemoCountdownState
- java.lang.Object
- 
- java.lang.Enum<DemoCountdownState>
- 
- com.inductiveautomation.ignition.common.licensing.DemoCountdownState
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<DemoCountdownState>
 
 public enum DemoCountdownState extends java.lang.Enum<DemoCountdownState> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description AllInDemoAll non-free modules are in demo modeNoneInDemoAll non-free modules are activatedSomeInDemoOne or more non-free module is in demo mode
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static DemoCountdownStatevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DemoCountdownState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
AllInDemopublic static final DemoCountdownState AllInDemo All non-free modules are in demo mode
 - 
SomeInDemopublic static final DemoCountdownState SomeInDemo One or more non-free module is in demo mode
 - 
NoneInDemopublic static final DemoCountdownState NoneInDemo All non-free modules are activated
 
- 
 - 
Method Detail- 
valuespublic static DemoCountdownState[] 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 (DemoCountdownState c : DemoCountdownState.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static DemoCountdownState 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
 
 
- 
 
-