public enum ComparisonOperationType extends Enum<ComparisonOperationType>
| Enum Constant and Description |
|---|
EQUALS
Enum value Equals.
|
GREATER_THAN
Enum value GreaterThan.
|
GREATER_THAN_OR_EQUAL
Enum value GreaterThanOrEqual.
|
LESS_THAN
Enum value LessThan.
|
LESS_THAN_OR_EQUAL
Enum value LessThanOrEqual.
|
NOT_EQUALS
Enum value NotEquals.
|
| Modifier and Type | Method and Description |
|---|---|
static ComparisonOperationType |
fromString(String value)
Parses a serialized value to a ComparisonOperationType instance.
|
String |
toString() |
static ComparisonOperationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComparisonOperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComparisonOperationType EQUALS
public static final ComparisonOperationType NOT_EQUALS
public static final ComparisonOperationType GREATER_THAN
public static final ComparisonOperationType GREATER_THAN_OR_EQUAL
public static final ComparisonOperationType LESS_THAN
public static final ComparisonOperationType LESS_THAN_OR_EQUAL
public static ComparisonOperationType[] values()
for (ComparisonOperationType c : ComparisonOperationType.values()) System.out.println(c);
public static ComparisonOperationType 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 static ComparisonOperationType fromString(String value)
value - the serialized value to parse.public String toString()
toString in class Enum<ComparisonOperationType>/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/