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