|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<TransFtn> scale.clef.expr.TransFtn
public enum TransFtn
This enum specifies the different transcendental functions - sin, cos, etc.
$Id$
Copyright 2008 by the
Scale Compiler Group,
Department of Computer Science
University of Massachusetts,
Amherst MA. 01003, USA
All Rights Reserved.
Enum Constant Summary | |
---|---|
Acos
The acos() function. |
|
Alloca
The alloca() function. |
|
Asin
The asin() function. |
|
Atan
The atan() function. |
|
Conjg
The conjg() function. |
|
Cos
The cos() function. |
|
Cosh
The cosh() function. |
|
Dealloca
The dealloca function. |
|
Exp
The exp() function. |
|
FrameAddress
The builtin_frame_address() function. |
|
Log
The log() function. |
|
Log10
The log10() function. |
|
ReturnAddress
The builtin_return_address function. |
|
Sin
The sin() function. |
|
Sinh
The sinh() function. |
|
Sqrt
The sqrt() function. |
|
Tan
The tan() function. |
|
Tanh
The tanh() function. |
Method Summary | |
---|---|
java.lang.String |
cName()
|
java.lang.String |
sName()
|
static TransFtn |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static TransFtn[] |
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 |
---|
public static final TransFtn Sqrt
public static final TransFtn Exp
public static final TransFtn Log
public static final TransFtn Log10
public static final TransFtn Sin
public static final TransFtn Cos
public static final TransFtn Tan
public static final TransFtn Asin
public static final TransFtn Acos
public static final TransFtn Atan
public static final TransFtn Sinh
public static final TransFtn Cosh
public static final TransFtn Tanh
public static final TransFtn Conjg
public static final TransFtn Alloca
public static final TransFtn ReturnAddress
public static final TransFtn FrameAddress
public static final TransFtn Dealloca
alloca
ed variable is no longer
needed. Used by Fortran 90 for intermediate allocatble arrays.
Method Detail |
---|
public static TransFtn[] values()
for (TransFtn c : TransFtn.values()) System.out.println(c);
public static TransFtn valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is nullpublic java.lang.String sName()
public java.lang.String cName()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |