public enum MrlCustomProperties extends Enum<MrlCustomProperties>
Enum Constant and Description |
---|
mrlconfigholder_mrlcontent
For MRL Factory : directly the MRL content.
|
mrlconfigholder_mrlfile
For MRL Factory : a way to access mrl file :
File in classpath
Full file system path (file:///[FILE_PATH])
This property can't be provided if mrlconfigholder_mrlcontent is provided.
|
Modifier and Type | Method and Description |
---|---|
String |
getLabel() |
static MrlCustomProperties |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MrlCustomProperties[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MrlCustomProperties mrlconfigholder_mrlfile
public static final MrlCustomProperties mrlconfigholder_mrlcontent
public static MrlCustomProperties[] values()
for (MrlCustomProperties c : MrlCustomProperties.values()) System.out.println(c);
public static MrlCustomProperties 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 nullpublic String getLabel()