public enum GarbageCleanState extends Enum<GarbageCleanState>
| Enum Constant and Description |
|---|
DELETING_GARBAGE
不要データを削除中であることを示します。
|
INITIALIZED
不要データ削除が初期化されたことを示します。
|
| Modifier and Type | Method and Description |
|---|---|
static GarbageCleanState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GarbageCleanState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GarbageCleanState INITIALIZED
public static final GarbageCleanState DELETING_GARBAGE
public static GarbageCleanState[] values()
for (GarbageCleanState c : GarbageCleanState.values()) System.out.println(c);
public static GarbageCleanState 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.