com.jgoodies.jdiskreport.model.settings
Enum GUISettings.ViewMode

java.lang.Object
  extended by java.lang.Enum<GUISettings.ViewMode>
      extended by com.jgoodies.jdiskreport.model.settings.GUISettings.ViewMode
All Implemented Interfaces:
Serializable, Comparable<GUISettings.ViewMode>
Enclosing class:
GUISettings

public static enum GUISettings.ViewMode
extends Enum<GUISettings.ViewMode>


Enum Constant Summary
OVERVIEW
           
SIZE_BAR
           
SIZE_DISTRIBUTION_BAR
           
SIZE_DISTRIBUTION_PIE
           
SIZE_DISTRIBUTION_TABLE
           
SIZE_PIE
           
SIZE_TABLE
           
SIZE_TREE_MAP
           
SIZE_TREE_PIE
           
TIME_DISTRIBUTION_BAR
           
TIME_DISTRIBUTION_PIE
           
TIME_DISTRIBUTION_TABLE
           
TOP50_LARGEST
           
TOP50_NEWEST
           
TOP50_OLDEST
           
TYPE_DISTRIBUTION_BAR
           
TYPE_DISTRIBUTION_PIE
           
TYPE_DISTRIBUTION_TABLE
           
 
Method Summary
static GUISettings.ViewMode valueOf(String name)
          Returns the enum constant of this type with the specified name.
static GUISettings.ViewMode[] 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

OVERVIEW

public static final GUISettings.ViewMode OVERVIEW

SIZE_TREE_PIE

public static final GUISettings.ViewMode SIZE_TREE_PIE

SIZE_TREE_MAP

public static final GUISettings.ViewMode SIZE_TREE_MAP

SIZE_PIE

public static final GUISettings.ViewMode SIZE_PIE

SIZE_BAR

public static final GUISettings.ViewMode SIZE_BAR

SIZE_TABLE

public static final GUISettings.ViewMode SIZE_TABLE

TOP50_LARGEST

public static final GUISettings.ViewMode TOP50_LARGEST

TOP50_OLDEST

public static final GUISettings.ViewMode TOP50_OLDEST

TOP50_NEWEST

public static final GUISettings.ViewMode TOP50_NEWEST

SIZE_DISTRIBUTION_PIE

public static final GUISettings.ViewMode SIZE_DISTRIBUTION_PIE

SIZE_DISTRIBUTION_BAR

public static final GUISettings.ViewMode SIZE_DISTRIBUTION_BAR

SIZE_DISTRIBUTION_TABLE

public static final GUISettings.ViewMode SIZE_DISTRIBUTION_TABLE

TIME_DISTRIBUTION_PIE

public static final GUISettings.ViewMode TIME_DISTRIBUTION_PIE

TIME_DISTRIBUTION_BAR

public static final GUISettings.ViewMode TIME_DISTRIBUTION_BAR

TIME_DISTRIBUTION_TABLE

public static final GUISettings.ViewMode TIME_DISTRIBUTION_TABLE

TYPE_DISTRIBUTION_PIE

public static final GUISettings.ViewMode TYPE_DISTRIBUTION_PIE

TYPE_DISTRIBUTION_BAR

public static final GUISettings.ViewMode TYPE_DISTRIBUTION_BAR

TYPE_DISTRIBUTION_TABLE

public static final GUISettings.ViewMode TYPE_DISTRIBUTION_TABLE
Method Detail

values

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

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

valueOf

public static GUISettings.ViewMode 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


Copyright © 2000-2008 JGoodies Karsten Lentzsch. All Rights Reserved.