public enum MacroMigrationPoint extends Enum<MacroMigrationPoint>
MacroMigration
may be performed.
Some points, such as during Storage and Editor marshalling, will always be set - this enum includes additional points.
Enum Constant and Description |
---|
VIEW |
Modifier and Type | Method and Description |
---|---|
static MacroMigrationPoint |
of(String point)
Returns the
MacroMigrationPoint enum for a string. |
static MacroMigrationPoint |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MacroMigrationPoint[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MacroMigrationPoint VIEW
public static MacroMigrationPoint[] values()
for (MacroMigrationPoint c : MacroMigrationPoint.values()) System.out.println(c);
public static MacroMigrationPoint 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 static MacroMigrationPoint of(String point)
MacroMigrationPoint
enum for a string.IllegalArgumentException
- if the string doesn't match any known enum value.Copyright © 2003–2020 Atlassian. All rights reserved.