public static enum OracleTextQueryObject.Direction extends java.lang.Enum<OracleTextQueryObject.Direction>
Enum Constant and Description |
---|
ASC
This constant denotes that results will be sorted based on their score value in ascending order
|
DESC
This constant denotes that results will be sorted based on their score value in descending order
|
NONE
This constant denotes that results will not be sorted based on their score value
|
Modifier and Type | Method and Description |
---|---|
static OracleTextQueryObject.Direction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OracleTextQueryObject.Direction[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final OracleTextQueryObject.Direction ASC
public static final OracleTextQueryObject.Direction DESC
public static final OracleTextQueryObject.Direction NONE
public static OracleTextQueryObject.Direction valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static OracleTextQueryObject.Direction[] values()
for (OracleTextQueryObject.Direction c : OracleTextQueryObject.Direction.values()) System.out.println(c);
Copyright © 2017, 2018 Oracle and/or its affiliates. All Rights Reserved.