Package jetbrains.buildServer.agent
Enum ArtifactsPreprocessor.SymbolicLinksMode
- java.lang.Object
-
- java.lang.Enum<ArtifactsPreprocessor.SymbolicLinksMode>
-
- jetbrains.buildServer.agent.ArtifactsPreprocessor.SymbolicLinksMode
-
- All Implemented Interfaces:
Serializable
,Comparable<ArtifactsPreprocessor.SymbolicLinksMode>
- Enclosing interface:
- ArtifactsPreprocessor
public static enum ArtifactsPreprocessor.SymbolicLinksMode extends Enum<ArtifactsPreprocessor.SymbolicLinksMode>
Represents how an archive processes symbolic links.- Since:
- 2023.05.1
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ArtifactsPreprocessor.SymbolicLinksMode
getDefault()
static ArtifactsPreprocessor.SymbolicLinksMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static ArtifactsPreprocessor.SymbolicLinksMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INLINE
public static final ArtifactsPreprocessor.SymbolicLinksMode INLINE
Copy all the contents of the files and recursively directories available via the symbolic links to the archive
-
AS_IS
public static final ArtifactsPreprocessor.SymbolicLinksMode AS_IS
Copying link paths to the archive as is.
-
-
Method Detail
-
values
public static ArtifactsPreprocessor.SymbolicLinksMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ArtifactsPreprocessor.SymbolicLinksMode c : ArtifactsPreprocessor.SymbolicLinksMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ArtifactsPreprocessor.SymbolicLinksMode valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getDefault
@NotNull public static ArtifactsPreprocessor.SymbolicLinksMode getDefault()
-
-