Package org.apache.poi.sl.draw.geom
Enum GuideIf.Op
- java.lang.Object
-
- java.lang.Enum<GuideIf.Op>
-
- org.apache.poi.sl.draw.geom.GuideIf.Op
-
- All Implemented Interfaces:
Serializable
,Comparable<GuideIf.Op>
- Enclosing interface:
- GuideIf
public static enum GuideIf.Op extends Enum<GuideIf.Op>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GuideIf.Op
valueOf(String name)
Returns the enum constant of this type with the specified name.static GuideIf.Op[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
muldiv
public static final GuideIf.Op muldiv
-
addsub
public static final GuideIf.Op addsub
-
adddiv
public static final GuideIf.Op adddiv
-
ifelse
public static final GuideIf.Op ifelse
-
val
public static final GuideIf.Op val
-
abs
public static final GuideIf.Op abs
-
sqrt
public static final GuideIf.Op sqrt
-
max
public static final GuideIf.Op max
-
min
public static final GuideIf.Op min
-
at2
public static final GuideIf.Op at2
-
sin
public static final GuideIf.Op sin
-
cos
public static final GuideIf.Op cos
-
tan
public static final GuideIf.Op tan
-
cat2
public static final GuideIf.Op cat2
-
sat2
public static final GuideIf.Op sat2
-
pin
public static final GuideIf.Op pin
-
mod
public static final GuideIf.Op mod
-
-
Method Detail
-
values
public static GuideIf.Op[] 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 (GuideIf.Op c : GuideIf.Op.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GuideIf.Op 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 nameNullPointerException
- if the argument is null
-
-