/** @param frozen the frozen to set */ public void freeze() { this.frozen = true; if (this.fieldTypeLocal) this.fieldType.freeze(); this.indexed = (fieldType.indexOptions() == IndexOptions.NONE ? false : true); }
public void setType(IndexedFieldType type) { this.fieldType = type; this.javaType = type.javaType(); }
/** @return the stored */ public boolean stored() { return fieldType.stored(); }
public NumericType getNumericType() { return fieldType.numericType(); }