org.teleal.cling.support.contentdirectory.descriptor.upnp
Enum WriteStatusValue

java.lang.Object
  extended by java.lang.Enum<WriteStatusValue>
      extended by org.teleal.cling.support.contentdirectory.descriptor.upnp.WriteStatusValue
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<WriteStatusValue>

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

Java class for writeStatusValue.

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

 <simpleType name="writeStatusValue">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="WRITABLE"/>
     <enumeration value="PROTECTED"/>
     <enumeration value="NOT_WRITABLE"/>
     <enumeration value="UNKNOWN"/>
     <enumeration value="MIXED"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
MIXED
           
NOT_WRITABLE
           
PROTECTED
           
UNKNOWN
           
WRITABLE
           
 
Method Summary
static WriteStatusValue fromValue(java.lang.String v)
           
 java.lang.String value()
           
static WriteStatusValue valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static WriteStatusValue[] 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

WRITABLE

public static final WriteStatusValue WRITABLE

PROTECTED

public static final WriteStatusValue PROTECTED

NOT_WRITABLE

public static final WriteStatusValue NOT_WRITABLE

UNKNOWN

public static final WriteStatusValue UNKNOWN

MIXED

public static final WriteStatusValue MIXED
Method Detail

values

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

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

valueOf

public static WriteStatusValue 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 WriteStatusValue fromValue(java.lang.String v)


Copyright © 2010 Teleal GmbH, Switzerland. All Rights Reserved.