Package org.apfloat
Enum HypergeometricHelper.Transformation
- java.lang.Object
-
- java.lang.Enum<HypergeometricHelper.Transformation>
-
- org.apfloat.HypergeometricHelper.Transformation
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<HypergeometricHelper.Transformation>
- Enclosing class:
- HypergeometricHelper
private static enum HypergeometricHelper.Transformation extends java.lang.Enum<HypergeometricHelper.Transformation>
-
-
Constructor Summary
Constructors Modifier Constructor Description private
Transformation()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract boolean
isApplicable(Apcomplex z)
abstract Apcomplex
value(HypergeometricHelper.Hypergeometric2F1Helper helper)
static HypergeometricHelper.Transformation
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static HypergeometricHelper.Transformation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.abstract Apcomplex
z(Apcomplex z)
-
-
-
Enum Constant Detail
-
T0
public static final HypergeometricHelper.Transformation T0
-
T1
public static final HypergeometricHelper.Transformation T1
-
T2
public static final HypergeometricHelper.Transformation T2
-
T3
public static final HypergeometricHelper.Transformation T3
-
T4
public static final HypergeometricHelper.Transformation T4
-
T5
public static final HypergeometricHelper.Transformation T5
-
-
Method Detail
-
values
public static HypergeometricHelper.Transformation[] 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 (HypergeometricHelper.Transformation c : HypergeometricHelper.Transformation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HypergeometricHelper.Transformation 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 namejava.lang.NullPointerException
- if the argument is null
-
isApplicable
public abstract boolean isApplicable(Apcomplex z)
-
value
public abstract Apcomplex value(HypergeometricHelper.Hypergeometric2F1Helper helper)
-
-