public enum BreakMode extends Enum<BreakMode>
Enum Constant and Description |
---|
GENERIC |
IO |
NETWORK |
NONE |
RUNTIME |
SCHEMA |
UNSUPPORTED |
Modifier and Type | Method and Description |
---|---|
static BreakMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BreakMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BreakMode NONE
public static final BreakMode NETWORK
public static final BreakMode IO
public static final BreakMode SCHEMA
public static final BreakMode GENERIC
public static final BreakMode UNSUPPORTED
public static final BreakMode RUNTIME
public static BreakMode[] values()
for (BreakMode c : BreakMode.values()) System.out.println(c);
public static BreakMode 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 evolveum. All rights reserved.