net.sf.ovanttasks.ovnative.win32
Enum LnkFile.ShowCmd

java.lang.Object
  extended by java.lang.Enum<LnkFile.ShowCmd>
      extended by net.sf.ovanttasks.ovnative.win32.LnkFile.ShowCmd
All Implemented Interfaces:
Serializable, Comparable<LnkFile.ShowCmd>
Enclosing class:
LnkFile

public static enum LnkFile.ShowCmd
extends Enum<LnkFile.ShowCmd>

The inital state of the window.


Enum Constant Summary
SHOWMAXIMIZED
          maximized window state
SHOWMINIMIZED
          minimized window state
SHOWNORMAL
          normal window state
 
Method Summary
static LnkFile.ShowCmd valueOf(String name)
          Returns the enum constant of this type with the specified name.
static LnkFile.ShowCmd[] 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

SHOWNORMAL

public static final LnkFile.ShowCmd SHOWNORMAL
normal window state


SHOWMAXIMIZED

public static final LnkFile.ShowCmd SHOWMAXIMIZED
maximized window state


SHOWMINIMIZED

public static final LnkFile.ShowCmd SHOWMINIMIZED
minimized window state

Method Detail

values

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

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

valueOf

public static LnkFile.ShowCmd 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 © 2008 Orangevolt. All Rights Reserved.