Uses of Class
org.apache.sis.util.collection.TableColumn
Packages that use TableColumn
Package
Description
Miscellaneous objects and adapters defined in the
"lan" namespace.Addition to the collection framework.
-
Uses of TableColumn in org.apache.sis.internal.jaxb.lan
Methods in org.apache.sis.internal.jaxb.lan with parameters of type TableColumnModifier and TypeMethodDescription<V> VLocaleAndCharset.getValue(TableColumn<V> column) Returns the value associated to the given column of this node.booleanLocaleAndCharset.isEditable(TableColumn<?> column) Considers this node as non-editable since it represents the key in a map, and keys cannot be modified through theMap.Entryinterface.<V> voidLocaleAndCharset.setValue(TableColumn<V> column, V value) Always throws an exception since we cannot edit the key of a map entry. -
Uses of TableColumn in org.apache.sis.util.collection
Fields in org.apache.sis.util.collection declared as TableColumnModifier and TypeFieldDescriptionstatic final TableColumn<String> TableColumn.IDENTIFIERFrequently-used constant for a column of object identifiers.static final TableColumn<Integer> TableColumn.INDEXFrequently-used constant for a column of index values.static final TableColumn<CharSequence> TableColumn.NAMEFrequently-used constant for a column of object names.static final TableColumn<CharSequence> TableColumn.REMARKSFrequently-used constant for a column of remarks.static final TableColumn<Class<?>> TableColumn.TYPEFrequently-used constant for a column of object types.static final TableColumn<Object> TableColumn.VALUEFrequently-used constant for a column of object values.static final TableColumn<Number> TableColumn.VALUE_AS_NUMBERFrequently-used constant for a column of object numerical values.static final TableColumn<CharSequence> TableColumn.VALUE_AS_TEXTFrequently-used constant for a column of object textual values.Methods in org.apache.sis.util.collection that return TableColumnModifier and TypeMethodDescriptionTableColumn<?>[]TreeTableFormat.getColumns()Returns the table columns to parse and format, ornullfor the default list of columns.Methods in org.apache.sis.util.collection that return types with arguments of type TableColumnModifier and TypeMethodDescriptionfinal List<TableColumn<?>> DefaultTreeTable.getColumns()Returns the table columns given at construction time.List<TableColumn<?>> TreeTable.getColumns()Returns the table columns, in the order they shall be rendered by default.Methods in org.apache.sis.util.collection with parameters of type TableColumnModifier and TypeMethodDescription<V> VDefaultTreeTable.Node.getValue(TableColumn<V> column) Returns the value in the given column, ornullif none.<V> VTreeTable.Node.getValue(TableColumn<V> column) Returns the value in the given column, ornullif none.booleanDefaultTreeTable.Node.isEditable(TableColumn<?> column) Determines whether the value in the specified column is editable.booleanTreeTable.Node.isEditable(TableColumn<?> column) Determines whether the value in the specified column is editable.static TreeTable.NodeTreeTables.nodeForPath(TreeTable.Node from, TableColumn<? super String> column, File path) Finds the node for the given file, or creates a new node if none exists.static TreeTable.NodeTreeTables.nodeForPath(TreeTable.Node from, TableColumn<? super String> column, Path path) Finds the node for the given path, or creates a new node if none exists.static TreeTableTreeTables.parse(String tree, TableColumn<?> labelColumn, TableColumn<?>... otherColumns) Parses the given string as tree.voidTreeTableFormat.setColumns(TableColumn<?>... columns) Sets the table columns to parse and format.<V> voidDefaultTreeTable.Node.setValue(TableColumn<V> column, V value) Sets the value for the given column.<V> voidTreeTable.Node.setValue(TableColumn<V> column, V value) Sets the value for the given column (optional operation).Constructors in org.apache.sis.util.collection with parameters of type TableColumnModifierConstructorDescriptionDefaultTreeTable(TableColumn<?>... columns) Creates a new tree table with the given columns.