public static enum Condition.Anchor extends Enum<Condition.Anchor>
Modifier and Type | Method and Description |
---|---|
static Condition.Anchor |
create(boolean start,
boolean end) |
static Condition.Anchor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Condition.Anchor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Condition.Anchor NONE
public static final Condition.Anchor START
public static final Condition.Anchor END
public static final Condition.Anchor BOTH
public static Condition.Anchor[] values()
for (Condition.Anchor c : Condition.Anchor.values()) System.out.println(c);
public static Condition.Anchor 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 static Condition.Anchor create(boolean start, boolean end)
Copyright © 2018. All rights reserved.