public enum UriType extends Enum<UriType>
Enum Constant and Description |
---|
URI0
Service document
|
URI1
Entity set
|
URI10
Function import returning a single instance of an entity type
|
URI11
Function import returning a collection of complex-type instances
|
URI12
Function import returning a single instance of a complex type
|
URI13
Function import returning a collection of primitive-type instances
|
URI14
Function import returning a single instance of a primitive type
|
URI15
Count of an entity set
|
URI16
Count of a single entity
|
URI17
Media resource of an entity
|
URI2
Entity set with key predicate
|
URI3
Complex property of an entity
|
URI4
Simple property of a complex property of an entity
|
URI5
Simple property of an entity
|
URI50A
Count of link to a single entity
|
URI50B
Count of links to multiple entities
|
URI6A
Navigation property of an entity with target multiplicity '1' or '0..1'
|
URI6B
Navigation property of an entity with target multiplicity '*'
|
URI7A
Link to a single entity
|
URI7B
Link to multiple entities
|
URI8
Metadata document
|
URI9
Batch request
|
Modifier and Type | Method and Description |
---|---|
boolean |
isCompatible(SystemQueryOption queryOption) |
static UriType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UriType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UriType URI0
public static final UriType URI1
public static final UriType URI2
public static final UriType URI3
public static final UriType URI4
public static final UriType URI5
public static final UriType URI6A
public static final UriType URI6B
public static final UriType URI7A
public static final UriType URI7B
public static final UriType URI8
public static final UriType URI9
public static final UriType URI10
public static final UriType URI11
public static final UriType URI12
public static final UriType URI13
public static final UriType URI14
public static final UriType URI15
public static final UriType URI16
public static final UriType URI17
public static final UriType URI50A
public static final UriType URI50B
public static UriType[] values()
for (UriType c : UriType.values()) System.out.println(c);
public static UriType 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 boolean isCompatible(SystemQueryOption queryOption)
Apache Camel