public enum DependType extends Enum<DependType>
Enum Constant and Description |
---|
HARD_DEPEND
ハードな依存です。
依存先のプラグインが存在しない場合、依存元のプラグインはロードされません。
|
LOAD_BEFORE
自プラグインのロード前にロードする必要がある依存です。
|
SOFT_DEPEND
ソフトな依存です。
依存先のプラグインが存在しない場合でも、依存元のプラグインはロードされます。
|
Modifier and Type | Method and Description |
---|---|
static DependType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DependType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DependType HARD_DEPEND
public static final DependType SOFT_DEPEND
public static final DependType LOAD_BEFORE
public static DependType[] values()
for (DependType c : DependType.values()) System.out.println(c);
public static DependType 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.