public enum Kind extends Enum<Kind>
| Modifier and Type | Method and Description |
|---|---|
static Kind |
fromName(String name)
Returns the kind for the given name or null if it could not be found
|
String |
getName() |
Updater |
getUpdater() |
String |
toString() |
static Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static Kind[] values()
for (Kind c : Kind.values()) System.out.println(c);
public static Kind 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 Kind fromName(String name)
public String getName()
public Updater getUpdater()
Copyright © 2076–2017 Red Hat. All rights reserved.