Package uk.ac.starlink.ttools.plot2.data
Class Input
- java.lang.Object
-
- uk.ac.starlink.ttools.plot2.data.Input
-
public class Input extends java.lang.Object
Characterises a coordinate value as specified by the user. There may be multiple Input values corresponding to a single coordinate (Coord
as used by the plotting system.- Since:
- 12 Sep 2014
- Author:
- Mark Taylor
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description uk.ac.starlink.table.Domain<?>
getDomain()
Returns the value domain which this input represents.InputMeta
getMeta()
Returns user-directed metadata describing this input.Input
withMeta(InputMeta meta)
Returns an object that behaves like this one but has different metadata as supplied.
-
-
-
Constructor Detail
-
Input
public Input(InputMeta meta, uk.ac.starlink.table.Domain<?> domain)
Constructor.- Parameters:
meta
- user-directed metadatadomain
- data value domain
-
-
Method Detail
-
getMeta
public InputMeta getMeta()
Returns user-directed metadata describing this input.- Returns:
- metadata
-
getDomain
public uk.ac.starlink.table.Domain<?> getDomain()
Returns the value domain which this input represents. This can also be used to determine what input value types are acceptable.- Returns:
- value domain
-
-