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