public enum ScreenOperation extends Enum<ScreenOperation>
Modifier and Type | Method and Description |
---|---|
int |
getOperationId() |
String |
getOperationName() |
static ScreenOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScreenOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScreenOperation CREATE
public static final ScreenOperation EDIT
public static final ScreenOperation VIEW
public static final ScreenOperation DEFAULT
public static ScreenOperation[] values()
for (ScreenOperation c : ScreenOperation.values()) System.out.println(c);
public static ScreenOperation 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 nullpublic String getOperationName()
public int getOperationId()
Copyright © 2002-2015 Atlassian. All Rights Reserved.