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