public static enum Source.Type extends Enum<Source.Type>
Enum Constant and Description |
---|
CLUSTER_DEFAULT
The default property value as loaded from the masters of the cluster.
|
DEFAULT
The default property value from
PropertyKey on compile time. |
MOUNT_OPTION
The property value is specified as options for a mount point.
|
PATH_DEFAULT
The property value is specified as path level defaults through command line.
|
RUNTIME
The property value is set by user during runtime (e.g., Configuration.set or through
HadoopConf).
|
SITE_PROPERTY
The property value is specified in site properties file (alluxio-site.properties).
|
SYSTEM_PROPERTY
The property value is specified with JVM -D options before passed to Alluxio.
|
UNKNOWN
The unknown source which has the lowest priority.
|
Modifier and Type | Method and Description |
---|---|
static Source.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Source.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Source.Type UNKNOWN
public static final Source.Type DEFAULT
PropertyKey
on compile time.public static final Source.Type CLUSTER_DEFAULT
public static final Source.Type SITE_PROPERTY
public static final Source.Type SYSTEM_PROPERTY
public static final Source.Type PATH_DEFAULT
public static final Source.Type RUNTIME
public static final Source.Type MOUNT_OPTION
public static Source.Type[] values()
for (Source.Type c : Source.Type.values()) System.out.println(c);
public static Source.Type 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.