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