org.spase.parser200
Enum EnumIntegral

java.lang.Object
  extended by java.lang.Enum<EnumIntegral>
      extended by org.spase.parser200.EnumIntegral
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<EnumIntegral>

public enum EnumIntegral
extends java.lang.Enum<EnumIntegral>

Java class for enumIntegral.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="enumIntegral">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="Area"/>
     <enumeration value="Bandwidth"/>
     <enumeration value="SolidAngle"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
AREA
          Integration over the extent of a planar region, or of the surface of a solid.
BANDWIDTH
          Integration over the width a frequency band.
SOLID_ANGLE
          Integration over the angle in three-dimensional space that an object subtends at a point.
 
Method Summary
static EnumIntegral fromValue(java.lang.String v)
           
 java.lang.String value()
           
static EnumIntegral valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static EnumIntegral[] 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

AREA

public static final EnumIntegral AREA
Integration over the extent of a planar region, or of the surface of a solid.


BANDWIDTH

public static final EnumIntegral BANDWIDTH
Integration over the width a frequency band.


SOLID_ANGLE

public static final EnumIntegral SOLID_ANGLE
Integration over the angle in three-dimensional space that an object subtends at a point.

Method Detail

values

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

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

valueOf

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

value

public java.lang.String value()

fromValue

public static EnumIntegral fromValue(java.lang.String v)