public static enum AWSStand.StandVariable extends java.lang.Enum<AWSStand.StandVariable>
Enum Constant and Description |
---|
age
Age of the stand
|
carbonateInUpperSoil
A binary variable which is true if there is free calcium carbonate (CaCO3) in the upper 30 cm of the soil
|
DominantSpecies
Dominant species
|
stagnantMoisture
A binary variable which is true when site is waterlogged ("hydromorphie" in French), i.e.
|
topex
The topex-to-distance index (calculated using GIS) distance 1000m, 8 directions, west weighted (E-1 SE-1 S-1 SW-2 W-3 NW-2 N-1 NE-1) reference Ruel et al.
|
v
Merchantable volume per ha with 6.5-cm minimum diameter (m3/ha)
|
wind50
The modeled maximum gust speed with an exceedance probability of 0.02/yr using model KAMM (m/sec) reference Heneka et al.
|
wind99
The modeled maximum gust speed on Dec 26, 1999 (during Lothar storm) obtained by the wind model KAMM (m/sec) reference Heneka et al.
|
year
Year of the measurement
|
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
cast(java.lang.Object obj) |
static AWSStand.StandVariable |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AWSStand.StandVariable[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AWSStand.StandVariable DominantSpecies
public static final AWSStand.StandVariable age
public static final AWSStand.StandVariable year
public static final AWSStand.StandVariable v
public static final AWSStand.StandVariable stagnantMoisture
public static final AWSStand.StandVariable topex
public static final AWSStand.StandVariable wind99
public static final AWSStand.StandVariable carbonateInUpperSoil
public static final AWSStand.StandVariable wind50
public static AWSStand.StandVariable[] values()
for (AWSStand.StandVariable c : AWSStand.StandVariable.values()) System.out.println(c);
public static AWSStand.StandVariable 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 namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.Object cast(java.lang.Object obj) throws java.lang.Exception
java.lang.Exception