Package model
Enum ProcessorSystemConfig.ClassKeyIdentifierEnum
- java.lang.Object
-
- java.lang.Enum<ProcessorSystemConfig.ClassKeyIdentifierEnum>
-
- model.ProcessorSystemConfig.ClassKeyIdentifierEnum
-
- All Implemented Interfaces:
Serializable,Comparable<ProcessorSystemConfig.ClassKeyIdentifierEnum>
- Enclosing class:
- ProcessorSystemConfig
public static enum ProcessorSystemConfig.ClassKeyIdentifierEnum extends Enum<ProcessorSystemConfig.ClassKeyIdentifierEnum>
Field used by processor to communicate with Finix.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classProcessorSystemConfig.ClassKeyIdentifierEnum.Adapter
-
Enum Constant Summary
Enum Constants Enum Constant Description IO_FINIX_VISA_DIRECT_CLIENT_VISASYSTEMCONFIGUNKNOWN_DEFAULT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ProcessorSystemConfig.ClassKeyIdentifierEnumfromValue(String value)StringgetRawValue()StringgetValue()voidsetRawValue(String s)StringtoString()static ProcessorSystemConfig.ClassKeyIdentifierEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static ProcessorSystemConfig.ClassKeyIdentifierEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IO_FINIX_VISA_DIRECT_CLIENT_VISASYSTEMCONFIG
public static final ProcessorSystemConfig.ClassKeyIdentifierEnum IO_FINIX_VISA_DIRECT_CLIENT_VISASYSTEMCONFIG
-
UNKNOWN_DEFAULT
public static final ProcessorSystemConfig.ClassKeyIdentifierEnum UNKNOWN_DEFAULT
-
-
Method Detail
-
values
public static ProcessorSystemConfig.ClassKeyIdentifierEnum[] 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 (ProcessorSystemConfig.ClassKeyIdentifierEnum c : ProcessorSystemConfig.ClassKeyIdentifierEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProcessorSystemConfig.ClassKeyIdentifierEnum valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<ProcessorSystemConfig.ClassKeyIdentifierEnum>
-
setRawValue
public void setRawValue(String s)
-
getRawValue
public String getRawValue()
-
fromValue
public static ProcessorSystemConfig.ClassKeyIdentifierEnum fromValue(String value)
-
-