Enum RepositoryInitializingExtension.ProcessResult
- java.lang.Object
-
- java.lang.Enum<RepositoryInitializingExtension.ProcessResult>
-
- jetbrains.buildServer.serverSide.impl.configsRepo.RepositoryInitializingExtension.ProcessResult
-
- All Implemented Interfaces:
Serializable
,Comparable<RepositoryInitializingExtension.ProcessResult>
- Enclosing interface:
- RepositoryInitializingExtension
public static enum RepositoryInitializingExtension.ProcessResult extends Enum<RepositoryInitializingExtension.ProcessResult>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMMIT
commit this path including all subfiles and subdirectoriesPOSTPONE
postpone this file, all postponed files will be anyway committed after processingSTEP_INSIDE
list child files of the current directory, returning this result for file (not a directory) is the same, as returningPOSTPONE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RepositoryInitializingExtension.ProcessResult
valueOf(String name)
Returns the enum constant of this type with the specified name.static RepositoryInitializingExtension.ProcessResult[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
POSTPONE
public static final RepositoryInitializingExtension.ProcessResult POSTPONE
postpone this file, all postponed files will be anyway committed after processing
-
COMMIT
public static final RepositoryInitializingExtension.ProcessResult COMMIT
commit this path including all subfiles and subdirectories
-
STEP_INSIDE
public static final RepositoryInitializingExtension.ProcessResult STEP_INSIDE
list child files of the current directory, returning this result for file (not a directory) is the same, as returningPOSTPONE
-
-
Method Detail
-
values
public static RepositoryInitializingExtension.ProcessResult[] 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 (RepositoryInitializingExtension.ProcessResult c : RepositoryInitializingExtension.ProcessResult.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RepositoryInitializingExtension.ProcessResult 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
-
-