當前位置: 首頁>>代碼示例>>Java>>正文


Java IndexableField.numericValue方法代碼示例

本文整理匯總了Java中org.apache.lucene.index.IndexableField.numericValue方法的典型用法代碼示例。如果您正苦於以下問題:Java IndexableField.numericValue方法的具體用法?Java IndexableField.numericValue怎麽用?Java IndexableField.numericValue使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.apache.lucene.index.IndexableField的用法示例。


在下文中一共展示了IndexableField.numericValue方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: resetFromIndexableField

import org.apache.lucene.index.IndexableField; //導入方法依賴的package包/類
public GeoPoint resetFromIndexableField(IndexableField field) {
    if (field instanceof LatLonPoint) {
        BytesRef br = field.binaryValue();
        byte[] bytes = Arrays.copyOfRange(br.bytes, br.offset, br.length);
        return this.reset(
            GeoEncodingUtils.decodeLatitude(bytes, 0),
            GeoEncodingUtils.decodeLongitude(bytes, Integer.BYTES));
    } else if (field instanceof LatLonDocValuesField) {
        long encoded = (long)(field.numericValue());
        return this.reset(
            GeoEncodingUtils.decodeLatitude((int)(encoded >>> 32)),
            GeoEncodingUtils.decodeLongitude((int)encoded));
    }
    return resetFromIndexHash(Long.parseLong(field.stringValue()));
}
 
開發者ID:justor,項目名稱:elasticsearch_my,代碼行數:16,代碼來源:GeoPoint.java

示例2: writeField

import org.apache.lucene.index.IndexableField; //導入方法依賴的package包/類
@Override
public void writeField(FieldInfo info, IndexableField field)
    throws IOException {

  ++numStoredFieldsInDoc;

  int bits = 0;
  final BytesRef bytes;
  final String string;

  Number number = field.numericValue();
  if (number != null) {
    if (number instanceof Byte || number instanceof Short || number instanceof Integer) {
      bits = NUMERIC_INT;
    } else if (number instanceof Long) {
      bits = NUMERIC_LONG;
    } else if (number instanceof Float) {
      bits = NUMERIC_FLOAT;
    } else if (number instanceof Double) {
      bits = NUMERIC_DOUBLE;
    } else {
      throw new IllegalArgumentException("cannot store numeric type " + number.getClass());
    }
    string = null;
    bytes = null;
  } else {
    bytes = field.binaryValue();
    if (bytes != null) {
      bits = BYTE_ARR;
      string = null;
    } else {
      bits = STRING;
      string = field.stringValue();
      if (string == null) {
        throw new IllegalArgumentException("field " + field.name() + " is stored but does not have binaryValue, stringValue nor numericValue");
      }
    }
  }

  final long infoAndBits = (((long) info.number) << TYPE_BITS) | bits;
  bufferedDocs.writeVLong(infoAndBits);

  if (bytes != null) {
    bufferedDocs.writeVInt(bytes.length);
    bufferedDocs.writeBytes(bytes.bytes, bytes.offset, bytes.length);
  } else if (string != null) {
    bufferedDocs.writeString(field.stringValue());
  } else {
    if (number instanceof Byte || number instanceof Short || number instanceof Integer) {
      bufferedDocs.writeInt(number.intValue());
    } else if (number instanceof Long) {
      bufferedDocs.writeLong(number.longValue());
    } else if (number instanceof Float) {
      bufferedDocs.writeInt(Float.floatToIntBits(number.floatValue()));
    } else if (number instanceof Double) {
      bufferedDocs.writeLong(Double.doubleToLongBits(number.doubleValue()));
    } else {
      throw new AssertionError("Cannot get here");
    }
  }
}
 
開發者ID:lamsfoundation,項目名稱:lams,代碼行數:62,代碼來源:CompressingStoredFieldsWriter.java

示例3: get

import org.apache.lucene.index.IndexableField; //導入方法依賴的package包/類
public static java.lang.Double get(IndexableField field) {
    return field != null && field.numericValue() != null ? field.numericValue().doubleValue() : null;
}
 
開發者ID:Sproutigy,項目名稱:LucenePlus,代碼行數:4,代碼來源:LuceneFields.java

示例4: getNumber

import org.apache.lucene.index.IndexableField; //導入方法依賴的package包/類
public static Number getNumber(IndexableField field) {
    return field != null ? field.numericValue() : null;
}
 
開發者ID:Sproutigy,項目名稱:LucenePlus,代碼行數:4,代碼來源:LuceneFields.java


注:本文中的org.apache.lucene.index.IndexableField.numericValue方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。