public enum Index extends Enum<Index>
| Enum Constant and Description |
|---|
AFTER
Insert after the named filter.
|
BEFORE
Insert before the named filter.
|
FIRST
Insert first
|
LAST
Insert last
|
| Modifier and Type | Method and Description |
|---|---|
int |
value() |
static Index |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Index[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Index FIRST
public static final Index LAST
public static final Index BEFORE
public static final Index AFTER
public static Index[] values()
for (Index c : Index.values()) System.out.println(c);
public static Index 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 int value()
Copyright © 2017–2018 Red Hat. All rights reserved.