public enum UpdateTasks extends Enum<UpdateTasks>
Enum Constant and Description |
---|
DOWNLOADING_SOURCES
ソースのダウンロードを行います。
|
INITIALIZED
エイリアスのアップデートが初期化されたことを示します。
|
UPDATING_ALIASES
エイリアスのアップデートを行います。
|
Modifier and Type | Method and Description |
---|---|
static UpdateTasks |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UpdateTasks[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UpdateTasks INITIALIZED
public static final UpdateTasks DOWNLOADING_SOURCES
public static final UpdateTasks UPDATING_ALIASES
public static UpdateTasks[] values()
for (UpdateTasks c : UpdateTasks.values()) System.out.println(c);
public static UpdateTasks 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 © 2023. All rights reserved.