sota.gui.views
Enum CoverageView.CoverageSortCriteria

java.lang.Object
  extended by java.lang.Enum<CoverageView.CoverageSortCriteria>
      extended by sota.gui.views.CoverageView.CoverageSortCriteria
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<CoverageView.CoverageSortCriteria>
Enclosing class:
CoverageView

public static enum CoverageView.CoverageSortCriteria
extends java.lang.Enum<CoverageView.CoverageSortCriteria>

Die Sortierungskriterien der Ansicht.


Enum Constant Summary
bi
           
c0
           
c1
           
c2
           
c3
           
feec
           
mbi
           
mcdc
           
mmdc
           
name
           
 
Method Summary
static CoverageView.CoverageSortCriteria valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static CoverageView.CoverageSortCriteria[] 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

bi

public static final CoverageView.CoverageSortCriteria bi

c0

public static final CoverageView.CoverageSortCriteria c0

c1

public static final CoverageView.CoverageSortCriteria c1

c2

public static final CoverageView.CoverageSortCriteria c2

c3

public static final CoverageView.CoverageSortCriteria c3

feec

public static final CoverageView.CoverageSortCriteria feec

mbi

public static final CoverageView.CoverageSortCriteria mbi

mcdc

public static final CoverageView.CoverageSortCriteria mcdc

mmdc

public static final CoverageView.CoverageSortCriteria mmdc

name

public static final CoverageView.CoverageSortCriteria name
Method Detail

valueOf

public static CoverageView.CoverageSortCriteria 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

values

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

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