public enum CleanTasks extends Enum<CleanTasks>
Enum Constant and Description |
---|
DELETING_GARBAGE
不要なデータの削除中です。
|
SEARCHING_GARBAGE
不要なデータを検索します。
|
Modifier and Type | Method and Description |
---|---|
static CleanTasks |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CleanTasks[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CleanTasks SEARCHING_GARBAGE
public static final CleanTasks DELETING_GARBAGE
public static CleanTasks[] values()
for (CleanTasks c : CleanTasks.values()) System.out.println(c);
public static CleanTasks 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.