mirror of https://github.com/apache/lucene.git
LUCENE-6497: Allow subclasses of FieldType to check frozen state
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1681207 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
71c454caed
commit
942ba07248
|
@ -218,6 +218,9 @@ API Changes
|
||||||
* LUCENE-6466: Moved SpanQuery.getSpans() and .extractTerms() to SpanWeight
|
* LUCENE-6466: Moved SpanQuery.getSpans() and .extractTerms() to SpanWeight
|
||||||
(Alan Woodward)
|
(Alan Woodward)
|
||||||
|
|
||||||
|
* LUCENE-6497: Allow subclasses of FieldType to check frozen state
|
||||||
|
(Ryan Ernst)
|
||||||
|
|
||||||
Other
|
Other
|
||||||
|
|
||||||
* LUCENE-6413: Test runner should report the number of suites completed/
|
* LUCENE-6413: Test runner should report the number of suites completed/
|
||||||
|
|
|
@ -32,7 +32,7 @@ public class FieldType implements IndexableFieldType {
|
||||||
/** Data type of the numeric value
|
/** Data type of the numeric value
|
||||||
* @since 3.2
|
* @since 3.2
|
||||||
*/
|
*/
|
||||||
public static enum NumericType {
|
public enum NumericType {
|
||||||
/** 32-bit integer numeric type */
|
/** 32-bit integer numeric type */
|
||||||
INT,
|
INT,
|
||||||
/** 64-bit long numeric type */
|
/** 64-bit long numeric type */
|
||||||
|
@ -80,7 +80,11 @@ public class FieldType implements IndexableFieldType {
|
||||||
public FieldType() {
|
public FieldType() {
|
||||||
}
|
}
|
||||||
|
|
||||||
private void checkIfFrozen() {
|
/**
|
||||||
|
* Throws an exception if this FieldType is frozen. Subclasses should
|
||||||
|
* call this within setters for additional state.
|
||||||
|
*/
|
||||||
|
protected void checkIfFrozen() {
|
||||||
if (frozen) {
|
if (frozen) {
|
||||||
throw new IllegalStateException("this FieldType is already frozen and cannot be changed");
|
throw new IllegalStateException("this FieldType is already frozen and cannot be changed");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue