public class PolygonColumn extends AbstractColumn<java.awt.Polygon>
| Constructor and Description |
|---|
PolygonColumn(java.lang.String name) |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getTypeName()
Get a human-readable name of this type of column specification.
|
protected java.util.Optional<java.awt.Polygon> |
parse(java.lang.String s)
Attempt to parse the given string
into the format expected by this kind of column,
returning
Optional.empty() on failure. |
extract, extractAll, extractAllFrom, getName, isValidpublic java.lang.String getTypeName()
ColumnSpecification"Numeric column".protected java.util.Optional<java.awt.Polygon> parse(java.lang.String s)
AbstractColumnOptional.empty() on failure.parse in class AbstractColumn<java.awt.Polygon>s - a string representing an entry in a column,
which may or may not be validOptional.empty() if the given string is not valid;
this must not be null