com.yobotics.simulationconstructionset.util.math.functionGenerator
Enum YoFunctionGeneratorMode

java.lang.Object
  extended by java.lang.Enum<YoFunctionGeneratorMode>
      extended by com.yobotics.simulationconstructionset.util.math.functionGenerator.YoFunctionGeneratorMode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<YoFunctionGeneratorMode>

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

Title:

Description:

Copyright: Copyright (c) 2006

Company:

Version:
1.0
Author:
not attributable

Enum Constant Summary
CHIRP_EXPONENTIAL
           
CHIRP_LINEAR
           
DC
           
OFF
           
SAWTOOTH
           
SINE
           
SQUARE
           
WHITE_NOISE
           
 
Method Summary
static YoFunctionGeneratorMode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static YoFunctionGeneratorMode[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

OFF

public static final YoFunctionGeneratorMode OFF

SINE

public static final YoFunctionGeneratorMode SINE

CHIRP_LINEAR

public static final YoFunctionGeneratorMode CHIRP_LINEAR

SQUARE

public static final YoFunctionGeneratorMode SQUARE

SAWTOOTH

public static final YoFunctionGeneratorMode SAWTOOTH

WHITE_NOISE

public static final YoFunctionGeneratorMode WHITE_NOISE

DC

public static final YoFunctionGeneratorMode DC

CHIRP_EXPONENTIAL

public static final YoFunctionGeneratorMode CHIRP_EXPONENTIAL
Method Detail

values

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

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

valueOf

public static YoFunctionGeneratorMode 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
java.lang.NullPointerException - if the argument is null