public enum Preds extends Enum<Preds>
| Modifier and Type | Method and Description |
|---|---|
static <T> Predicate<T> |
notNull() |
static Preds |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Preds[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static Preds[] values()
for (Preds c : Preds.values()) System.out.println(c);
public static Preds 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 <T> Predicate<T> notNull()
Copyright © 2017. All rights reserved.