public enum SearchBinaryOperatorKind extends Enum<SearchBinaryOperatorKind>
| Modifier and Type | Method and Description | 
|---|---|
| static SearchBinaryOperatorKind | get(String operator) | 
| static SearchBinaryOperatorKind | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static SearchBinaryOperatorKind[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final SearchBinaryOperatorKind AND
public static final SearchBinaryOperatorKind OR
public static SearchBinaryOperatorKind[] values()
for (SearchBinaryOperatorKind c : SearchBinaryOperatorKind.values()) System.out.println(c);
public static SearchBinaryOperatorKind 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 SearchBinaryOperatorKind get(String operator)
Copyright © 2013–2023 The Apache Software Foundation. All rights reserved.