Home | History | Annotate | Download | only in db

Lines Matching defs:Field

25 public abstract class Field {
27 /** Field position in a row. */
30 /** Column name of this field. */
33 /** Field type of SQLite. */
36 public static Field newInstance(final int pos, final String name, final int fieldType) {
43 throw new IllegalArgumentException("Unknown field type: " + fieldType);
47 private Field(final int pos, final String name, final int fieldType) {
87 throw new IllegalArgumentException("Unknown field type: " + fieldType);
92 * Abstraction of INTEGER type field.
94 private static final class IntegerField extends Field {
112 * Abstraction of STRING type field.
114 private static final class StringField extends Field {