org.ini4j
Enum Registry.Type

Object
  extended by Enum<Registry.Type>
      extended by org.ini4j.Registry.Type
All Implemented Interfaces:
Serializable, Comparable<Registry.Type>
Enclosing interface:
Registry

public static enum Registry.Type
extends Enum<Registry.Type>


Enum Constant Summary
REG_BINARY
           
REG_DWORD
           
REG_DWORD_BIG_ENDIAN
           
REG_EXPAND_SZ
           
REG_FULL_RESOURCE_DESCRIPTOR
           
REG_LINK
           
REG_MULTI_SZ
           
REG_NONE
           
REG_QWORD
           
REG_RESOURCE_LIST
           
REG_RESOURCE_REQUIREMENTS_LIST
           
REG_SZ
           
 
Field Summary
static String REMOVE
           
static char REMOVE_CHAR
           
static String SEPARATOR
           
static char SEPARATOR_CHAR
           
 
Method Summary
static Registry.Type fromString(String str)
           
 String toString()
           
static Registry.Type valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Registry.Type[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

REG_NONE

public static final Registry.Type REG_NONE

REG_SZ

public static final Registry.Type REG_SZ

REG_EXPAND_SZ

public static final Registry.Type REG_EXPAND_SZ

REG_BINARY

public static final Registry.Type REG_BINARY

REG_DWORD

public static final Registry.Type REG_DWORD

REG_DWORD_BIG_ENDIAN

public static final Registry.Type REG_DWORD_BIG_ENDIAN

REG_LINK

public static final Registry.Type REG_LINK

REG_MULTI_SZ

public static final Registry.Type REG_MULTI_SZ

REG_RESOURCE_LIST

public static final Registry.Type REG_RESOURCE_LIST

REG_FULL_RESOURCE_DESCRIPTOR

public static final Registry.Type REG_FULL_RESOURCE_DESCRIPTOR

REG_RESOURCE_REQUIREMENTS_LIST

public static final Registry.Type REG_RESOURCE_REQUIREMENTS_LIST

REG_QWORD

public static final Registry.Type REG_QWORD
Field Detail

SEPARATOR_CHAR

public static final char SEPARATOR_CHAR
See Also:
Constant Field Values

SEPARATOR

public static final String SEPARATOR

REMOVE_CHAR

public static final char REMOVE_CHAR
See Also:
Constant Field Values

REMOVE

public static final String REMOVE
Method Detail

values

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

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

valueOf

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

fromString

public static Registry.Type fromString(String str)

toString

public String toString()
Overrides:
toString in class Enum<Registry.Type>


Copyright © 2011. All Rights Reserved.