public enum GarbageCleanErrorCause extends Enum<GarbageCleanErrorCause>
Enum Constant and Description |
---|
ALL_DELETE_FAILED
すべての削除に失敗しました。
|
CANCELLED
キャンセルされました。
|
INVALID_INTEGRITY
ファイル・システムとの整合性が取れなく、スキップされました。
|
NO_GARBAGE
不要なデータが存在しません。
|
Modifier and Type | Method and Description |
---|---|
static GarbageCleanErrorCause |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GarbageCleanErrorCause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GarbageCleanErrorCause CANCELLED
public static final GarbageCleanErrorCause NO_GARBAGE
public static final GarbageCleanErrorCause ALL_DELETE_FAILED
public static final GarbageCleanErrorCause INVALID_INTEGRITY
public static GarbageCleanErrorCause[] values()
for (GarbageCleanErrorCause c : GarbageCleanErrorCause.values()) System.out.println(c);
public static GarbageCleanErrorCause 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.