public static enum Correction.Rotation extends Enum<Correction.Rotation>
Enum Constant and Description |
---|
FORMATION
data rotated to correct for sample and formation orientation
|
NONE
no rotation applied to data
|
SAMPLE
data rotated to correct for sample orientation
|
Modifier and Type | Method and Description |
---|---|
String |
getNiceName()
Returns a user-friendly name for this rotation correction.
|
static Correction.Rotation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Correction.Rotation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Correction.Rotation NONE
public static final Correction.Rotation SAMPLE
public static final Correction.Rotation FORMATION
public static Correction.Rotation[] values()
for (Correction.Rotation c : Correction.Rotation.values()) System.out.println(c);
public static Correction.Rotation 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 getNiceName()
Copyright © 2022. All rights reserved.