Enum SystemQueryOptionKind
java.lang.Object
java.lang.Enum<SystemQueryOptionKind>
org.apache.olingo.server.api.uri.queryoption.SystemQueryOptionKind
- All Implemented Interfaces:
Serializable
,Comparable<SystemQueryOptionKind>
,java.lang.constant.Constable
Defines the supported system query options.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic SystemQueryOptionKind
Converts the URI syntax to an enumeration value.toString()
static SystemQueryOptionKind
Returns the enum constant of this type with the specified name.static SystemQueryOptionKind[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
FILTER
- See Also:
-
FORMAT
- See Also:
-
EXPAND
- See Also:
-
ID
- See Also:
-
COUNT
- See Also:
-
ORDERBY
- See Also:
-
SEARCH
- See Also:
-
SELECT
- See Also:
-
SKIP
- See Also:
-
SKIPTOKEN
- See Also:
-
TOP
- See Also:
-
LEVELS
- See Also:
-
DELTATOKEN
- See Also:
-
deltaTokenOption
-
APPLY
- See Also:
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
get
Converts the URI syntax to an enumeration value.- Parameters:
option
- option in the syntax used in the URI- Returns:
- system query option kind representing the given option
(or
null
if the option does not represent a system query option)
-
toString
- Overrides:
toString
in classEnum<SystemQueryOptionKind>
- Returns:
- URI syntax for this system query option
-