public enum InstallOperator extends Enum<InstallOperator>
Enum Constant and Description |
---|
KPM_DEPENDENCY_RESOLVER
プラグイン依存関係リゾルバによって自動でインストールされたことを表します。
|
KPM_PLUGIN_UPDATER
プラグインアップデータによって自動でインストールされたことを表します。
|
OTHER
その他の方法でインストールされたことを表します。
|
SERVER_ADMIN
サーバの管理者によって手動でインストールされたことを表します。
|
UNKNOWN
未知の方法でインストールされたことを表します。
|
Modifier and Type | Method and Description |
---|---|
static InstallOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InstallOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InstallOperator SERVER_ADMIN
public static final InstallOperator KPM_DEPENDENCY_RESOLVER
public static final InstallOperator KPM_PLUGIN_UPDATER
public static final InstallOperator OTHER
public static final InstallOperator UNKNOWN
public static InstallOperator[] values()
for (InstallOperator c : InstallOperator.values()) System.out.println(c);
public static InstallOperator 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.