public enum STTrendlineType extends Enum<STTrendlineType>
Java class for ST_TrendlineType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_TrendlineType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="exp"/> <enumeration value="linear"/> <enumeration value="log"/> <enumeration value="movingAvg"/> <enumeration value="poly"/> <enumeration value="power"/> </restriction> </simpleType>
Enum Constant and Description |
---|
EXP
Exponential
|
LINEAR
Linear
|
LOG
Logarithmic
|
MOVING_AVG
Moving Average
|
POLY
Polynomial
|
POWER
Power
|
Modifier and Type | Method and Description |
---|---|
static STTrendlineType |
fromValue(String v) |
String |
value() |
static STTrendlineType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STTrendlineType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STTrendlineType EXP
public static final STTrendlineType LINEAR
public static final STTrendlineType LOG
public static final STTrendlineType MOVING_AVG
public static final STTrendlineType POLY
public static final STTrendlineType POWER
public static STTrendlineType[] values()
for (STTrendlineType c : STTrendlineType.values()) System.out.println(c);
public static STTrendlineType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String value()
public static STTrendlineType fromValue(String v)
Copyright © 2007-2019. All Rights Reserved.