org.alfresco.webdrone.share.site.document
Enum DocumentAspect

java.lang.Object
  extended by java.lang.Enum<DocumentAspect>
      extended by org.alfresco.webdrone.share.site.document.DocumentAspect
All Implemented Interfaces:
Serializable, Comparable<DocumentAspect>

public enum DocumentAspect
extends Enum<DocumentAspect>

Different Aspects of Documents.

Since:
1.6.1
Author:
Shan Nagarajan

Enum Constant Summary
CLASSIFIABLE
           
VERSIONABLE
           
 
Method Summary
static DocumentAspect getAspect(String name)
           
 String getValue()
           
static DocumentAspect valueOf(String name)
          Returns the enum constant of this type with the specified name.
static DocumentAspect[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CLASSIFIABLE

public static final DocumentAspect CLASSIFIABLE

VERSIONABLE

public static final DocumentAspect VERSIONABLE
Method Detail

values

public static DocumentAspect[] 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 (DocumentAspect c : DocumentAspect.values())
    System.out.println(c);

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

valueOf

public static DocumentAspect 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 name
NullPointerException - if the argument is null

getValue

public String getValue()

getAspect

public static DocumentAspect getAspect(String name)


Copyright © 2013. All Rights Reserved.