public enum GenericProfileEnumeration extends Enum<GenericProfileEnumeration>
Java class for GenericProfileEnumeration.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="GenericProfileEnumeration">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Basic"/>
<enumeration value="Standard"/>
<enumeration value="Extended"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
BASIC
Protocol services that needs to be implemented by all the Sale and POI
|
EXTENDED
Complete Protocol services
|
STANDARD
Protocol services involving interaction between Sale System and POI System as devices shared between the two Systems.
|
| Modifier and Type | Method and Description |
|---|---|
static GenericProfileEnumeration |
fromValue(String v) |
String |
value() |
static GenericProfileEnumeration |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GenericProfileEnumeration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GenericProfileEnumeration BASIC
public static final GenericProfileEnumeration STANDARD
public static final GenericProfileEnumeration EXTENDED
public static GenericProfileEnumeration[] values()
for (GenericProfileEnumeration c : GenericProfileEnumeration.values()) System.out.println(c);
public static GenericProfileEnumeration 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 nullpublic String value()
public static GenericProfileEnumeration fromValue(String v)
Copyright © 2018. All rights reserved.