Package org.apache.lucene.search.SortField

Examples of org.apache.lucene.search.SortField.Type


      output.writeBoolean(sortField.getReverse());
   }

   public static SortField readObjectStatic(final ObjectInput input) throws IOException, ClassNotFoundException {
      final String fieldName = input.readUTF();
      final Type sortType = (Type) input.readObject();
      final boolean reverseSort = input.readBoolean();
      return new SortField(fieldName, sortType, reverseSort);
   }
View Full Code Here

TOP

Related Classes of org.apache.lucene.search.SortField.Type

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.