public static enum AWSTreatment.TreatmentVariable extends java.lang.Enum<AWSTreatment.TreatmentVariable>
Enum Constant and Description |
---|
cumulatedRemovals
The cumulative merchantable volume of all thinnings to date as a ratio of total volume production (current volume + all thinnings to date)
|
nbYrsSincePreviousIntervention
The number of years since the last thinning
|
relativeRemovedVolume
The ratio between removed volume and volume prior to thinning (values between 0 to 1)
|
relativeRemovedVolumeInPast10Yrs
The average ratio between removed volume and volume prior to thinning within the past 10 years.
|
relativeRemovedVolumeOfPreviousIntervention
The ratio between removed volume and volume prior to the last thinning (values between 0 to 1), which is on average 5 years (3-7 yrs) before the current date
|
thinningQuotient
The ratio between mean quadratic diameter (mqd) of the removed trees and mqd of the stand prior to thinning
|
thinningQuotientOfPast10Yrs
The average ratio between mean quadratic diameter (mqd) of the removed trees and mqd of the stand prior to thinning within the past 10 years
|
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
cast(java.lang.Object obj) |
static AWSTreatment.TreatmentVariable |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AWSTreatment.TreatmentVariable[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AWSTreatment.TreatmentVariable cumulatedRemovals
public static final AWSTreatment.TreatmentVariable relativeRemovedVolume
public static final AWSTreatment.TreatmentVariable thinningQuotient
public static final AWSTreatment.TreatmentVariable relativeRemovedVolumeOfPreviousIntervention
public static final AWSTreatment.TreatmentVariable nbYrsSincePreviousIntervention
public static final AWSTreatment.TreatmentVariable relativeRemovedVolumeInPast10Yrs
public static final AWSTreatment.TreatmentVariable thinningQuotientOfPast10Yrs
public static AWSTreatment.TreatmentVariable[] values()
for (AWSTreatment.TreatmentVariable c : AWSTreatment.TreatmentVariable.values()) System.out.println(c);
public static AWSTreatment.TreatmentVariable 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