Groovy Documentation

org.gradle.api
Enum PathValidation

java.lang.Object
  java.lang.Enum
      org.gradle.api.PathValidation

enum PathValidation
extends java.lang.Enum

An enumeration for describing validation policies for file paths.


Enum Constant Summary
DIRECTORY

EXISTS

FILE

NONE

 
Method Summary
PathValidation valueOf(java.lang.String name)

Returns the enum constant of this type with the specified name.

org.gradle.api.PathValidation[] values()

Returns an array containing the constants of this enum type, in the order they are declared.

 
Methods inherited from class java.lang.Enum
hashCode, compareTo, compareTo, equals, toString, name, valueOf, getDeclaringClass, ordinal, getClass, wait, wait, wait, notify, notifyAll
 
Methods inherited from class java.lang.Object
hashCode, getClass, equals, toString, wait, wait, wait, notify, notifyAll
 

Enum Constant Detail

DIRECTORY

PathValidation DIRECTORY


EXISTS

PathValidation EXISTS


FILE

PathValidation FILE


NONE

PathValidation NONE


 
Method Detail

valueOf

PathValidation valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.


values

org.gradle.api.PathValidation[] values()
Returns an array containing the constants of this enum type, in the order they are declared.


 

Groovy Documentation