public static enum AliasSource.SourceType extends Enum<AliasSource.SourceType>
| Enum Constant and Description |
|---|
DYNAMIC
動的に追加されたソースです。
|
LOCAL_DEFINITIONS
ローカルで定義されたソースです。
|
WEB_SERVER
Webサーバがソースです。
|
| Modifier and Type | Method and Description |
|---|---|
static AliasSource.SourceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AliasSource.SourceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AliasSource.SourceType WEB_SERVER
public static final AliasSource.SourceType LOCAL_DEFINITIONS
public static final AliasSource.SourceType DYNAMIC
public static AliasSource.SourceType[] values()
for (AliasSource.SourceType c : AliasSource.SourceType.values()) System.out.println(c);
public static AliasSource.SourceType 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.