public enum CustomersPresence extends Enum<CustomersPresence>
| Enum Constant and Description |
|---|
NOT_PRESENT |
PHYSICAL_PRESENT |
VIRTUAL_PRESENT |
| Modifier and Type | Method and Description |
|---|---|
static CustomersPresence |
fromValue(String text) |
String |
getValue() |
String |
toString() |
static CustomersPresence |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CustomersPresence[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomersPresence NOT_PRESENT
public static final CustomersPresence VIRTUAL_PRESENT
public static final CustomersPresence PHYSICAL_PRESENT
public static CustomersPresence[] values()
for (CustomersPresence c : CustomersPresence.values()) System.out.println(c);
public static CustomersPresence 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 getValue()
public String toString()
toString in class Enum<CustomersPresence>public static CustomersPresence fromValue(String text)
Copyright © 2021. All rights reserved.