public enum DependsCollectErrorCause extends Enum<DependsCollectErrorCause>
Enum Constant and Description |
---|
SOME_DEPENDENCIES_COLLECT_FAILED
いくつかの依存関係の解決に失敗しました。
|
Modifier and Type | Method and Description |
---|---|
static DependsCollectErrorCause |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DependsCollectErrorCause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DependsCollectErrorCause SOME_DEPENDENCIES_COLLECT_FAILED
public static DependsCollectErrorCause[] values()
for (DependsCollectErrorCause c : DependsCollectErrorCause.values()) System.out.println(c);
public static DependsCollectErrorCause 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.