public static enum FlightSql.Searchable extends Enum<FlightSql.Searchable> implements com.google.protobuf.ProtocolMessageEnum
arrow.flight.protocol.sql.Searchable
Enum Constant and Description |
---|
SEARCHABLE_BASIC
Indicates that the column can be used In a WHERE clause with any
operator other than LIKE.
|
SEARCHABLE_CHAR
Indicates that the column can be used in a WHERE clause if it is using a
LIKE operator.
|
SEARCHABLE_FULL
Indicates that the column can be used in a WHERE clause using any operator.
|
SEARCHABLE_NONE
Indicates that column can not be used in a WHERE clause.
|
UNRECOGNIZED |
Modifier and Type | Field and Description |
---|---|
static int |
SEARCHABLE_BASIC_VALUE
Indicates that the column can be used In a WHERE clause with any
operator other than LIKE.
|
static int |
SEARCHABLE_CHAR_VALUE
Indicates that the column can be used in a WHERE clause if it is using a
LIKE operator.
|
static int |
SEARCHABLE_FULL_VALUE
Indicates that the column can be used in a WHERE clause using any operator.
|
static int |
SEARCHABLE_NONE_VALUE
Indicates that column can not be used in a WHERE clause.
|
Modifier and Type | Method and Description |
---|---|
static FlightSql.Searchable |
forNumber(int value) |
static com.google.protobuf.Descriptors.EnumDescriptor |
getDescriptor() |
com.google.protobuf.Descriptors.EnumDescriptor |
getDescriptorForType() |
int |
getNumber() |
com.google.protobuf.Descriptors.EnumValueDescriptor |
getValueDescriptor() |
static com.google.protobuf.Internal.EnumLiteMap<FlightSql.Searchable> |
internalGetValueMap() |
static FlightSql.Searchable |
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc) |
static FlightSql.Searchable |
valueOf(int value)
Deprecated.
Use
forNumber(int) instead. |
static FlightSql.Searchable |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlightSql.Searchable[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlightSql.Searchable SEARCHABLE_NONE
Indicates that column can not be used in a WHERE clause.
SEARCHABLE_NONE = 0;
public static final FlightSql.Searchable SEARCHABLE_CHAR
Indicates that the column can be used in a WHERE clause if it is using a LIKE operator.
SEARCHABLE_CHAR = 1;
public static final FlightSql.Searchable SEARCHABLE_BASIC
Indicates that the column can be used In a WHERE clause with any operator other than LIKE. - Allowed operators: comparison, quantified comparison, BETWEEN, DISTINCT, IN, MATCH, and UNIQUE.
SEARCHABLE_BASIC = 2;
public static final FlightSql.Searchable SEARCHABLE_FULL
Indicates that the column can be used in a WHERE clause using any operator.
SEARCHABLE_FULL = 3;
public static final FlightSql.Searchable UNRECOGNIZED
public static final int SEARCHABLE_NONE_VALUE
Indicates that column can not be used in a WHERE clause.
SEARCHABLE_NONE = 0;
public static final int SEARCHABLE_CHAR_VALUE
Indicates that the column can be used in a WHERE clause if it is using a LIKE operator.
SEARCHABLE_CHAR = 1;
public static final int SEARCHABLE_BASIC_VALUE
Indicates that the column can be used In a WHERE clause with any operator other than LIKE. - Allowed operators: comparison, quantified comparison, BETWEEN, DISTINCT, IN, MATCH, and UNIQUE.
SEARCHABLE_BASIC = 2;
public static final int SEARCHABLE_FULL_VALUE
Indicates that the column can be used in a WHERE clause using any operator.
SEARCHABLE_FULL = 3;
public static FlightSql.Searchable[] values()
for (FlightSql.Searchable c : FlightSql.Searchable.values()) System.out.println(c);
public static FlightSql.Searchable 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 final int getNumber()
getNumber
in interface com.google.protobuf.Internal.EnumLite
getNumber
in interface com.google.protobuf.ProtocolMessageEnum
@Deprecated public static FlightSql.Searchable valueOf(int value)
forNumber(int)
instead.value
- The numeric wire value of the corresponding enum entry.public static FlightSql.Searchable forNumber(int value)
value
- The numeric wire value of the corresponding enum entry.public static com.google.protobuf.Internal.EnumLiteMap<FlightSql.Searchable> internalGetValueMap()
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
getValueDescriptor
in interface com.google.protobuf.ProtocolMessageEnum
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
getDescriptorForType
in interface com.google.protobuf.ProtocolMessageEnum
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
public static FlightSql.Searchable valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Copyright © 2023 The Apache Software Foundation. All rights reserved.