public enum GenericProfileType extends Enum<GenericProfileType>
Java class for GenericProfileType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="GenericProfileType">
<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 GenericProfileType |
fromValue(String v)
From value generic profile type.
|
String |
value()
Value string.
|
static GenericProfileType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GenericProfileType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GenericProfileType BASIC
public static final GenericProfileType STANDARD
public static final GenericProfileType EXTENDED
public static GenericProfileType[] values()
for (GenericProfileType c : GenericProfileType.values()) System.out.println(c);
public static GenericProfileType 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 GenericProfileType fromValue(String v)
v - the vCopyright © 2022. All rights reserved.