public static enum TrafficSeries.FITTINGTYPE extends Enum<TrafficSeries.FITTINGTYPE>
Enum Constant and Description |
---|
EXPONENTIAL |
LINEAR |
Modifier and Type | Method and Description |
---|---|
String |
getName() |
boolean |
isExponential() |
boolean |
isLinear() |
static TrafficSeries.FITTINGTYPE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TrafficSeries.FITTINGTYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TrafficSeries.FITTINGTYPE EXPONENTIAL
public static final TrafficSeries.FITTINGTYPE LINEAR
public String getName()
public boolean isExponential()
public boolean isLinear()
public static TrafficSeries.FITTINGTYPE 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 static TrafficSeries.FITTINGTYPE[] values()
for (TrafficSeries.FITTINGTYPE c : TrafficSeries.FITTINGTYPE.values()) System.out.println(c);
Copyright © 2018. All rights reserved.