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