Example usage for org.apache.lucene.document Field setShortValue

List of usage examples for org.apache.lucene.document Field setShortValue

Introduction

In this page you can find the example usage for org.apache.lucene.document Field setShortValue.

Prototype

public void setShortValue(short value) 

Source Link

Document

Expert: change the value of this field.

Usage

From source file:org.apache.solr.legacy.TestLegacyField.java

License:Apache License

private void trySetShortValue(Field f) {
    expectThrows(IllegalArgumentException.class, () -> {
        f.setShortValue(Short.MAX_VALUE);
    });/*from w  ww. ja v a2 s. c  om*/
}