Groovy Documentation

org.gradle.external.javadoc
Enum JavadocMemberLevel

java.lang.Object
  java.lang.Enum
      org.gradle.external.javadoc.JavadocMemberLevel

enum JavadocMemberLevel
extends java.lang.Enum

This enum maps to the -public, -protected, -package and -private options of the javadoc executable.

author:
Tom Eyckmans


Enum Constant Summary
PACKAGE

PRIVATE

PROTECTED

PUBLIC

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

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

org.gradle.external.javadoc.JavadocMemberLevel[] 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

PACKAGE

JavadocMemberLevel PACKAGE


PRIVATE

JavadocMemberLevel PRIVATE


PROTECTED

JavadocMemberLevel PROTECTED


PUBLIC

JavadocMemberLevel PUBLIC


 
Method Detail

valueOf

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


values

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


 

Groovy Documentation