Uses of Class
net.talvi.puffinplot.data.MeasType

Packages that use MeasType
net.talvi.puffinplot.data   
net.talvi.puffinplot.data.file   
 

Uses of MeasType in net.talvi.puffinplot.data
 

Methods in net.talvi.puffinplot.data that return MeasType
static MeasType MeasType.fromString(java.lang.String string)
          Creates a measurement type from a string representation.
 MeasType Datum.getMeasType()
          Returns the type of this measurement (discrete or continuous).
 MeasType Sample.getMeasType()
          Returns the measurement type of this sample (discrete or continuous).
 MeasType Suite.getMeasType()
          Returns the measurement type of this suite (discrete or continuous)
static MeasType MeasType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static MeasType[] MeasType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in net.talvi.puffinplot.data with parameters of type MeasType
 void Datum.setMeasType(MeasType v)
          Sets the type of this measurement (discrete or continuous).
 

Uses of MeasType in net.talvi.puffinplot.data.file
 

Methods in net.talvi.puffinplot.data.file that return MeasType
 MeasType FileFormat.getMeasurementType()
           
 

Constructors in net.talvi.puffinplot.data.file with parameters of type MeasType
FileFormat(java.util.Map<java.lang.Integer,DatumField> columnMap, int headerLines, MeasType measurementType, TreatType treatmentType, java.lang.String separator, boolean useFixedWidthColumns, java.util.List<java.lang.Integer> columnWidths)
          Creates a new file format with the specified parameters.