public static enum QuerySpace.Disposition extends Enum<QuerySpace.Disposition>
Enum Constant and Description |
---|
COLLECTION
We have a collection-based QuerySpace.
|
COMPOSITE
We have a composition-based QuerySpace.
|
ENTITY
We have an entity-based QuerySpace.
|
Modifier and Type | Method and Description |
---|---|
static QuerySpace.Disposition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QuerySpace.Disposition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QuerySpace.Disposition ENTITY
EntityQuerySpace
for more details.public static final QuerySpace.Disposition COLLECTION
CollectionQuerySpace
for more details.public static final QuerySpace.Disposition COMPOSITE
CompositeQuerySpace
for more details.public static QuerySpace.Disposition[] values()
for (QuerySpace.Disposition c : QuerySpace.Disposition.values()) System.out.println(c);
public static QuerySpace.Disposition 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 © 2017 JBoss by Red Hat. All rights reserved.