public static enum SelectionHelper.ListMode extends Enum<SelectionHelper.ListMode>
Enum Constant and Description |
---|
NONE
Return null instead of a list if at least one item cannot be casted.
|
SKIP
Skip elements which cannot be casted to the target class
|
Modifier and Type | Method and Description |
---|---|
static SelectionHelper.ListMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SelectionHelper.ListMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SelectionHelper.ListMode SKIP
public static final SelectionHelper.ListMode NONE
public static SelectionHelper.ListMode[] values()
for (SelectionHelper.ListMode c : SelectionHelper.ListMode.values()) System.out.println(c);
public static SelectionHelper.ListMode 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 © 2016 Eclipse NeoSCADA Project. All rights reserved.