org.apache.chemistry.opencmis.commons.impl.jaxb
Enum EnumPropertiesDocument

java.lang.Object
  extended by java.lang.Enum<EnumPropertiesDocument>
      extended by org.apache.chemistry.opencmis.commons.impl.jaxb.EnumPropertiesDocument
All Implemented Interfaces:
Serializable, Comparable<EnumPropertiesDocument>

public enum EnumPropertiesDocument
extends Enum<EnumPropertiesDocument>

Java class for enumPropertiesDocument.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="enumPropertiesDocument">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="cmis:isImmutable"/>
     <enumeration value="cmis:isLatestVersion"/>
     <enumeration value="cmis:isMajorVersion"/>
     <enumeration value="cmis:isLatestMajorVersion"/>
     <enumeration value="cmis:versionLabel"/>
     <enumeration value="cmis:versionSeriesId"/>
     <enumeration value="cmis:isVersionSeriesCheckedOut"/>
     <enumeration value="cmis:versionSeriesCheckedOutBy"/>
     <enumeration value="cmis:versionSeriesCheckedOutId"/>
     <enumeration value="cmis:checkinComment"/>
     <enumeration value="cmis:contentStreamLength"/>
     <enumeration value="cmis:contentStreamMimeType"/>
     <enumeration value="cmis:contentStreamFileName"/>
     <enumeration value="cmis:contentStreamId"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
CMIS_CHECKIN_COMMENT
           
CMIS_CONTENT_STREAM_FILE_NAME
           
CMIS_CONTENT_STREAM_ID
           
CMIS_CONTENT_STREAM_LENGTH
           
CMIS_CONTENT_STREAM_MIME_TYPE
           
CMIS_IS_IMMUTABLE
           
CMIS_IS_LATEST_MAJOR_VERSION
           
CMIS_IS_LATEST_VERSION
           
CMIS_IS_MAJOR_VERSION
           
CMIS_IS_VERSION_SERIES_CHECKED_OUT
           
CMIS_VERSION_LABEL
           
CMIS_VERSION_SERIES_CHECKED_OUT_BY
           
CMIS_VERSION_SERIES_CHECKED_OUT_ID
           
CMIS_VERSION_SERIES_ID
           
 
Method Summary
static EnumPropertiesDocument fromValue(String v)
           
 String value()
           
static EnumPropertiesDocument valueOf(String name)
          Returns the enum constant of this type with the specified name.
static EnumPropertiesDocument[] 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

CMIS_IS_IMMUTABLE

public static final EnumPropertiesDocument CMIS_IS_IMMUTABLE

CMIS_IS_LATEST_VERSION

public static final EnumPropertiesDocument CMIS_IS_LATEST_VERSION

CMIS_IS_MAJOR_VERSION

public static final EnumPropertiesDocument CMIS_IS_MAJOR_VERSION

CMIS_IS_LATEST_MAJOR_VERSION

public static final EnumPropertiesDocument CMIS_IS_LATEST_MAJOR_VERSION

CMIS_VERSION_LABEL

public static final EnumPropertiesDocument CMIS_VERSION_LABEL

CMIS_VERSION_SERIES_ID

public static final EnumPropertiesDocument CMIS_VERSION_SERIES_ID

CMIS_IS_VERSION_SERIES_CHECKED_OUT

public static final EnumPropertiesDocument CMIS_IS_VERSION_SERIES_CHECKED_OUT

CMIS_VERSION_SERIES_CHECKED_OUT_BY

public static final EnumPropertiesDocument CMIS_VERSION_SERIES_CHECKED_OUT_BY

CMIS_VERSION_SERIES_CHECKED_OUT_ID

public static final EnumPropertiesDocument CMIS_VERSION_SERIES_CHECKED_OUT_ID

CMIS_CHECKIN_COMMENT

public static final EnumPropertiesDocument CMIS_CHECKIN_COMMENT

CMIS_CONTENT_STREAM_LENGTH

public static final EnumPropertiesDocument CMIS_CONTENT_STREAM_LENGTH

CMIS_CONTENT_STREAM_MIME_TYPE

public static final EnumPropertiesDocument CMIS_CONTENT_STREAM_MIME_TYPE

CMIS_CONTENT_STREAM_FILE_NAME

public static final EnumPropertiesDocument CMIS_CONTENT_STREAM_FILE_NAME

CMIS_CONTENT_STREAM_ID

public static final EnumPropertiesDocument CMIS_CONTENT_STREAM_ID
Method Detail

values

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

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

valueOf

public static EnumPropertiesDocument 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

value

public String value()

fromValue

public static EnumPropertiesDocument fromValue(String v)


Copyright © 2009-2011 The Apache Software Foundation. All Rights Reserved.