juife
v0.1a

net.sf.juife.wizard
Enum WizardPage.Type

java.lang.Object
  extended by java.lang.Enum<WizardPage.Type>
      extended by net.sf.juife.wizard.WizardPage.Type
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<WizardPage.Type>
Enclosing class:
WizardPage

public static enum WizardPage.Type
extends java.lang.Enum<WizardPage.Type>

Represents the type of a wizard page.


Enum Constant Summary
CONFIRMATION_PAGE
          Represents a conformation page.
CONFIRMATION_PAGE_EX
          Represents a conformation page.
OVERVIEW_PAGE
          Represents an overview page.
PROGRESS_PAGE
          Represents a progress page.
REQUIREMENTS_PAGE
          Represents a requirements page.
SUMMARY_PAGE
          Represents a summary page.
USER_INPUT_PAGE
          Represents an user-input page.
 
Method Summary
static WizardPage.Type valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static WizardPage.Type[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

OVERVIEW_PAGE

public static final WizardPage.Type OVERVIEW_PAGE
Represents an overview page.


REQUIREMENTS_PAGE

public static final WizardPage.Type REQUIREMENTS_PAGE
Represents a requirements page.


USER_INPUT_PAGE

public static final WizardPage.Type USER_INPUT_PAGE
Represents an user-input page.


CONFIRMATION_PAGE

public static final WizardPage.Type CONFIRMATION_PAGE
Represents a conformation page. Use CONFIRMATION_PAGE_EX if you want the 'Next' button to be displayed.


CONFIRMATION_PAGE_EX

public static final WizardPage.Type CONFIRMATION_PAGE_EX
Represents a conformation page. The difference between CONFIRMATION_PAGE and CONFIRMATION_PAGE_EX is the visibility of the 'Next' button. Use CONFIRMATION_PAGE if you don't want the 'Next' button to be displayed.


PROGRESS_PAGE

public static final WizardPage.Type PROGRESS_PAGE
Represents a progress page.


SUMMARY_PAGE

public static final WizardPage.Type SUMMARY_PAGE
Represents a summary page.

Method Detail

values

public static final WizardPage.Type[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(WizardPage.Type c : WizardPage.Type.values())
        System.out.println(c);

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

valueOf

public static WizardPage.Type 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

juife
v0.1a

Copyright © 2005 Grigor Iliev. All rights reserved. SourceForge.net Logo