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