public enum PublishType extends Enum<PublishType>
Enum Constant and Description |
---|
to_existing
Publishing a space to another space which already exists before publishing.
|
to_new
Publishing a space to a new space which gets created in the publishing process.
|
to_same
Publishing a space to itself.
|
Modifier and Type | Method and Description |
---|---|
static PublishType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PublishType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PublishType to_same
public static final PublishType to_new
public static final PublishType to_existing
public static PublishType[] values()
for (PublishType c : PublishType.values()) System.out.println(c);
public static PublishType 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 © 2019 K15t GmbH. All rights reserved.