public static enum AzureOperation.Type extends Enum<AzureOperation.Type>
| Enum Constant and Description |
|---|
ACTION
user triggered action, achieved by leveraging services and tasks
e.g.
|
DEFAULT |
REQUEST
a special type of task
|
SERVICE
usually achieves certain biz goal(so it's biz related), similar to spring @Service, shared by actions and services
e.g.
|
TASK
finer granularity, shared by services and actions, lies at the same layer as spring @Repository
e.g.
|
| Modifier and Type | Method and Description |
|---|---|
static AzureOperation.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AzureOperation.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AzureOperation.Type DEFAULT
public static final AzureOperation.Type ACTION
public static final AzureOperation.Type SERVICE
public static final AzureOperation.Type TASK
public static final AzureOperation.Type REQUEST
public static AzureOperation.Type[] values()
for (AzureOperation.Type c : AzureOperation.Type.values()) System.out.println(c);
public static AzureOperation.Type 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. All rights reserved.