public static enum Projection.Inclusion extends Enum<Projection.Inclusion>
| Enum Constant and Description |
|---|
explicit_exclusion |
explicit_inclusion |
implicit_exclusion |
implicit_inclusion |
undecided |
| Modifier and Type | Method and Description |
|---|---|
static Projection.Inclusion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Projection.Inclusion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Projection.Inclusion explicit_exclusion
public static final Projection.Inclusion implicit_exclusion
public static final Projection.Inclusion explicit_inclusion
public static final Projection.Inclusion implicit_inclusion
public static final Projection.Inclusion undecided
public static Projection.Inclusion[] values()
for (Projection.Inclusion c : Projection.Inclusion.values()) System.out.println(c);
public static Projection.Inclusion 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 © 2015. All rights reserved.