public enum BooleanOperatorEnumeration extends Enum<BooleanOperatorEnumeration>
Java class for BooleanOperatorEnumeration.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="BooleanOperatorEnumeration">
<restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
<enumeration value="AND"/>
<enumeration value="OR"/>
<enumeration value="NOT"/>
<enumeration value="XOR"/>
</restriction>
</simpleType>
| Modifier and Type | Method and Description |
|---|---|
static BooleanOperatorEnumeration |
fromValue(String v) |
String |
value() |
static BooleanOperatorEnumeration |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BooleanOperatorEnumeration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BooleanOperatorEnumeration AND
public static final BooleanOperatorEnumeration OR
public static final BooleanOperatorEnumeration NOT
public static final BooleanOperatorEnumeration XOR
public static BooleanOperatorEnumeration[] values()
for (BooleanOperatorEnumeration c : BooleanOperatorEnumeration.values()) System.out.println(c);
public static BooleanOperatorEnumeration 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 BooleanOperatorEnumeration fromValue(String v)
Copyright © 2018 Entur AS. All rights reserved.