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

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

public enum EnumServiceException
extends java.lang.Enum<EnumServiceException>

Java class for enumServiceException.

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

 <simpleType name="enumServiceException">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="constraint"/>
     <enumeration value="nameConstraintViolation"/>
     <enumeration value="contentAlreadyExists"/>
     <enumeration value="filterNotValid"/>
     <enumeration value="invalidArgument"/>
     <enumeration value="notSupported"/>
     <enumeration value="objectNotFound"/>
     <enumeration value="permissionDenied"/>
     <enumeration value="runtime"/>
     <enumeration value="storage"/>
     <enumeration value="streamNotSupported"/>
     <enumeration value="updateConflict"/>
     <enumeration value="versioning"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
CONSTRAINT
           
CONTENT_ALREADY_EXISTS
           
FILTER_NOT_VALID
           
INVALID_ARGUMENT
           
NAME_CONSTRAINT_VIOLATION
           
NOT_SUPPORTED
           
OBJECT_NOT_FOUND
           
PERMISSION_DENIED
           
RUNTIME
           
STORAGE
           
STREAM_NOT_SUPPORTED
           
UPDATE_CONFLICT
           
VERSIONING
           
 
Method Summary
static EnumServiceException fromValue(java.lang.String v)
           
 java.lang.String value()
           
static EnumServiceException valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static EnumServiceException[] 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

CONSTRAINT

public static final EnumServiceException CONSTRAINT

NAME_CONSTRAINT_VIOLATION

public static final EnumServiceException NAME_CONSTRAINT_VIOLATION

CONTENT_ALREADY_EXISTS

public static final EnumServiceException CONTENT_ALREADY_EXISTS

FILTER_NOT_VALID

public static final EnumServiceException FILTER_NOT_VALID

INVALID_ARGUMENT

public static final EnumServiceException INVALID_ARGUMENT

NOT_SUPPORTED

public static final EnumServiceException NOT_SUPPORTED

OBJECT_NOT_FOUND

public static final EnumServiceException OBJECT_NOT_FOUND

PERMISSION_DENIED

public static final EnumServiceException PERMISSION_DENIED

RUNTIME

public static final EnumServiceException RUNTIME

STORAGE

public static final EnumServiceException STORAGE

STREAM_NOT_SUPPORTED

public static final EnumServiceException STREAM_NOT_SUPPORTED

UPDATE_CONFLICT

public static final EnumServiceException UPDATE_CONFLICT

VERSIONING

public static final EnumServiceException VERSIONING
Method Detail

values

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

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

valueOf

public static EnumServiceException valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

value

public java.lang.String value()

fromValue

public static EnumServiceException fromValue(java.lang.String v)


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