Share via


ContainerHostDataPath Class

public final class ContainerHostDataPath
extends ExpandableStringEnum<ContainerHostDataPath>

The paths which will be mounted to container task's container.

Field Summary

Modifier and Type Field and Description
static final ContainerHostDataPath APPLICATIONS

The applications path.

static final ContainerHostDataPath JOB_PREP

The job-prep task path.

static final ContainerHostDataPath SHARED

The path for multi-instances task to shared their files.

static final ContainerHostDataPath STARTUP

The path for start task.

static final ContainerHostDataPath TASK

The task path.

static final ContainerHostDataPath VFS_MOUNTS

The path contains all virtual file systems are mounted on this node.

Constructor Summary

Constructor Description
ContainerHostDataPath()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of ContainerHostDataPath value.

Method Summary

Modifier and Type Method and Description
static ContainerHostDataPath fromString(String name)

Creates or finds a ContainerHostDataPath from its string representation.

static Collection<ContainerHostDataPath> values()

Gets known ContainerHostDataPath values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

APPLICATIONS

public static final ContainerHostDataPath APPLICATIONS

The applications path.

JOB_PREP

public static final ContainerHostDataPath JOB_PREP

The job-prep task path.

SHARED

public static final ContainerHostDataPath SHARED

The path for multi-instances task to shared their files.

STARTUP

public static final ContainerHostDataPath STARTUP

The path for start task.

TASK

public static final ContainerHostDataPath TASK

The task path.

VFS_MOUNTS

public static final ContainerHostDataPath VFS_MOUNTS

The path contains all virtual file systems are mounted on this node.

Constructor Details

ContainerHostDataPath

@Deprecated
public ContainerHostDataPath()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of ContainerHostDataPath value.

Method Details

fromString

public static ContainerHostDataPath fromString(String name)

Creates or finds a ContainerHostDataPath from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding ContainerHostDataPath.

values

public static Collection<ContainerHostDataPath> values()

Gets known ContainerHostDataPath values.

Returns:

known ContainerHostDataPath values.

Applies to