com.sun.tools.ws.processor.generator
Enum GeneratorConstants

java.lang.Object
  extended by java.lang.Enum<GeneratorConstants>
      extended by com.sun.tools.ws.processor.generator.GeneratorConstants
All Implemented Interfaces:
Serializable, Comparable<GeneratorConstants>

public enum GeneratorConstants
extends Enum<GeneratorConstants>


Enum Constant Summary
DOTC
           
FAULT_CLASS_MEMBER_NAME
           
GET
           
IS
           
JAVA_SRC_SUFFIX
           
QNAME_SUFFIX
           
RESPONSE
           
SIG_INNERCLASS
           
 
Method Summary
 String getValue()
           
static GeneratorConstants valueOf(String name)
          Returns the enum constant of this type with the specified name.
static GeneratorConstants[] 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

DOTC

public static final GeneratorConstants DOTC

SIG_INNERCLASS

public static final GeneratorConstants SIG_INNERCLASS

JAVA_SRC_SUFFIX

public static final GeneratorConstants JAVA_SRC_SUFFIX

QNAME_SUFFIX

public static final GeneratorConstants QNAME_SUFFIX

GET

public static final GeneratorConstants GET

IS

public static final GeneratorConstants IS

RESPONSE

public static final GeneratorConstants RESPONSE

FAULT_CLASS_MEMBER_NAME

public static final GeneratorConstants FAULT_CLASS_MEMBER_NAME
Method Detail

values

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

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

valueOf

public static GeneratorConstants 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

getValue

public String getValue()


Copyright (c) 1997-2012 Oracle and/or its affiliates. All rights reserved.