Package org.apache.blur.agent.types

Examples of org.apache.blur.agent.types.Column


    Map<String, Map<String, ColumnDefinition>> columnFamilies = schema.getFamilies();
    if (columnFamilies != null) {
      for (Map.Entry<String, Map<String, ColumnDefinition>> schemaEntry : columnFamilies.entrySet()) {
        Family family = new Family(schemaEntry.getKey());
        for (ColumnDefinition def : schemaEntry.getValue().values()) {
          Column column = new Column(def.getColumnName());
          column.setFullText(def.isFieldLessIndexed());
          //TODO: Rename this type
          column.setAnalyzer(def.getFieldType());
          //TODO: Do anything with subcolumns?
         
          family.getColumns().add(column);
        }
        columnDefs.add(family);
View Full Code Here

TOP

Related Classes of org.apache.blur.agent.types.Column

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.