@Restricted(value=org.kohsuke.accmod.restrictions.NoExternalUse.class) public static enum WorkDirManager.DirType extends Enum<WorkDirManager.DirType>
Enum Constant and Description |
---|
INTERNAL_DIR
Directory, which stores internal data of the Remoting layer itself.
|
JAR_CACHE_DIR
Directory, which stores the JAR Cache.
|
LOGS_DIR
Directory, which stores logs.
|
WORK_DIR
Top-level entry of the working directory.
|
Modifier and Type | Method and Description |
---|---|
String |
getDefaultLocation() |
String |
getName() |
String |
toString() |
static WorkDirManager.DirType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WorkDirManager.DirType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkDirManager.DirType WORK_DIR
public static final WorkDirManager.DirType INTERNAL_DIR
WORK_DIR
.public static final WorkDirManager.DirType JAR_CACHE_DIR
public static final WorkDirManager.DirType LOGS_DIR
public static WorkDirManager.DirType[] values()
for (WorkDirManager.DirType c : WorkDirManager.DirType.values()) System.out.println(c);
public static WorkDirManager.DirType 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 toString()
toString
in class Enum<WorkDirManager.DirType>
@NonNull public String getDefaultLocation()
@NonNull public String getName()
Copyright © 2004–2022. All rights reserved.