public enum UriResourceKind extends Enum<UriResourceKind>
Enum Constant and Description |
---|
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) |
navigationProperty
Class:
UriResourceNavigation URI: http://.../serviceroot/entityset(1)/navProperty |
primitiveProperty
Class:
UriResourceProperty URI: http://.../serviceroot/entityset(1)/property |
ref
Class:
UriResourceRef URI: http://.../serviceroot/entityset/$ref |
root
Class:
UriResourceRoot URI: http://.../serviceroot/entityset(1)?$filter=property eq $root/singleton/configstring |
singleton
Class:
UriResourceSingleton URI: http://.../serviceroot/singleton |
value
Class:
UriResourceValue URI: http://.../serviceroot/entityset(1)/property/$value |
Modifier and Type | Method and Description |
---|---|
static UriResourceKind |
valueOf(String name)
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.
|
public static final UriResourceKind action
UriResourceAction
public static final UriResourceKind complexProperty
UriResourceComplexProperty
public static final UriResourceKind count
UriResourceCount
public static final UriResourceKind entitySet
UriResourceEntitySet
public static final UriResourceKind function
UriResourceFunction
public static final UriResourceKind it
UriResourceIt
public static final UriResourceKind lambdaAll
UriResourceLambdaAll
public static final UriResourceKind lambdaAny
UriResourceLambdaAny
public static final UriResourceKind lambdaVariable
UriResourceLambdaVariable
public static final UriResourceKind navigationProperty
UriResourceNavigation
public static final UriResourceKind ref
UriResourceRef
public static final UriResourceKind root
UriResourceRoot
public static final UriResourceKind primitiveProperty
UriResourceProperty
public static final UriResourceKind singleton
UriResourceSingleton
public static final UriResourceKind value
UriResourceValue
public static UriResourceKind[] values()
for (UriResourceKind c : UriResourceKind.values()) System.out.println(c);
public static UriResourceKind 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 nullCopyright © 2013–2018 The Apache Software Foundation. All rights reserved.