Package org.apache.olingo.server.api.uri
Enum UriResourceKind
- All Implemented Interfaces:
Serializable
,Comparable<UriResourceKind>
,java.lang.constant.Constable
Defining the various resource part types
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionClass:UriResourceAction
URI: http://...Class:UriResourceComplexProperty
URI: http://...Class:UriResourceCount
URI: http://...Class:UriResourceEntitySet
URI: http://...Class:UriResourceFunction
URI: http://...Class:UriResourceIt
URI: http://...Class:UriResourceLambdaAll
URI: http://...Class:UriResourceLambdaAny
URI: http://...Class:UriResourceLambdaVariable
URI: http://...Class:UriResourceNavigation
URI: http://...Class:UriResourceProperty
URI: http://...Class:UriResourceRef
URI: http://...Class:UriResourceRoot
URI: http://...Class:UriResourceSingleton
URI: http://...Class:UriResourceValue
URI: http://... -
Method Summary
Modifier and TypeMethodDescriptionstatic UriResourceKind
Returns the enum constant of this type with the specified name.static UriResourceKind[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
action
Class:UriResourceAction
URI: http://.../serviceroot/action() -
complexProperty
Class:UriResourceComplexProperty
URI: http://.../serviceroot/entityset(1)/complexproperty() -
count
Class:UriResourceCount
URI: http://.../serviceroot/entityset/$count -
entitySet
Class:UriResourceEntitySet
URI: http://.../serviceroot/entityset -
function
Class:UriResourceFunction
URI: http://.../serviceroot/functionimport(P1=1,P2='a') -
it
Class:UriResourceIt
URI: http://.../serviceroot/entityset?$filter=$it/property -
lambdaAll
Class:UriResourceLambdaAll
URI: http://.../serviceroot/entityset/all(...) -
lambdaAny
Class:UriResourceLambdaAny
URI: http://.../serviceroot/entityset/any(...) -
lambdaVariable
Class:UriResourceLambdaVariable
URI: http://.../serviceroot/entityset/listofstring/any(d: 'string' eq d) -
ref
Class:UriResourceRef
URI: http://.../serviceroot/entityset/$ref -
root
Class:UriResourceRoot
URI: http://.../serviceroot/entityset(1)?$filter=property eq $root/singleton/configstring -
primitiveProperty
Class:UriResourceProperty
URI: http://.../serviceroot/entityset(1)/property -
singleton
Class:UriResourceSingleton
URI: http://.../serviceroot/singleton -
value
Class:UriResourceValue
URI: http://.../serviceroot/entityset(1)/property/$value
-
-
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
-