Package jmri.jmrit.ctc.configurexml
Enum ImportCodeButtonHandlerData.LOCK_IMPLEMENTATION
- java.lang.Object
- 
- java.lang.Enum<ImportCodeButtonHandlerData.LOCK_IMPLEMENTATION>
- 
- jmri.jmrit.ctc.configurexml.ImportCodeButtonHandlerData.LOCK_IMPLEMENTATION
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<ImportCodeButtonHandlerData.LOCK_IMPLEMENTATION>
 - Enclosing class:
- ImportCodeButtonHandlerData
 
 public static enum ImportCodeButtonHandlerData.LOCK_IMPLEMENTATION extends java.lang.Enum<ImportCodeButtonHandlerData.LOCK_IMPLEMENTATION> 
- 
- 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static ImportCodeButtonHandlerData.LOCK_IMPLEMENTATIONvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ImportCodeButtonHandlerData.LOCK_IMPLEMENTATION[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
GREGSpublic static final ImportCodeButtonHandlerData.LOCK_IMPLEMENTATION GREGS 
 - 
OTHERpublic static final ImportCodeButtonHandlerData.LOCK_IMPLEMENTATION OTHER 
 
- 
 - 
Method Detail- 
valuespublic static ImportCodeButtonHandlerData.LOCK_IMPLEMENTATION[] 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 (ImportCodeButtonHandlerData.LOCK_IMPLEMENTATION c : ImportCodeButtonHandlerData.LOCK_IMPLEMENTATION.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static ImportCodeButtonHandlerData.LOCK_IMPLEMENTATION 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
 
 
- 
 
-