be.destin.rdf.changes
Enum Status

java.lang.Object
  extended by java.lang.Enum<Status>
      extended by be.destin.rdf.changes.Status
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Status>

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


Enum Constant Summary
Change_Proposed
           
Change_Under_Review
           
Deprecate_Proposed
           
Deprecate_Under_Review
           
Deprecated
           
New_Proposed
           
New_Under_Review
           
Not_Approved
           
Published
           
 
Field Summary
static Power[] powerNeeded
           
 
Method Summary
 java.lang.String getScheme_About()
           
static java.lang.String graphVizColor(Status aStatus)
           
static java.lang.String graphVizLabel(java.lang.String prefix, Status aStatus)
           
static java.lang.String list()
           
 java.lang.String toHtml(SkosHtmlManager skosHtmlManager)
           
static Status valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Status[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

New_Proposed

public static final Status New_Proposed

New_Under_Review

public static final Status New_Under_Review

Published

public static final Status Published

Change_Proposed

public static final Status Change_Proposed

Change_Under_Review

public static final Status Change_Under_Review

Deprecate_Proposed

public static final Status Deprecate_Proposed

Deprecate_Under_Review

public static final Status Deprecate_Under_Review

Deprecated

public static final Status Deprecated

Not_Approved

public static final Status Not_Approved
Field Detail

powerNeeded

public static final Power[] powerNeeded
Method Detail

values

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

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

valueOf

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

getScheme_About

public java.lang.String getScheme_About()

graphVizColor

public static java.lang.String graphVizColor(Status aStatus)

graphVizLabel

public static java.lang.String graphVizLabel(java.lang.String prefix,
                                             Status aStatus)

toHtml

public java.lang.String toHtml(SkosHtmlManager skosHtmlManager)

list

public static java.lang.String list()