public enum Decorator extends Enum<Decorator>
| Enum Constant and Description |
|---|
JGIT_BEFORE |
JGIT_BEFORE_AND_LOG_AFTER |
LOG_OUTPUT_AFTER |
NONE |
| Modifier and Type | Method and Description |
|---|---|
static Decorator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Decorator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Decorator JGIT_BEFORE
public static final Decorator LOG_OUTPUT_AFTER
public static final Decorator JGIT_BEFORE_AND_LOG_AFTER
public static final Decorator NONE
public static Decorator[] values()
for (Decorator c : Decorator.values()) System.out.println(c);
public static Decorator 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 © 2001–2017 JBoss by Red Hat. All rights reserved.