summaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/searchdefinition/derived/NativeTable.java
diff options
context:
space:
mode:
Diffstat (limited to 'config-model/src/main/java/com/yahoo/searchdefinition/derived/NativeTable.java')
-rw-r--r--config-model/src/main/java/com/yahoo/searchdefinition/derived/NativeTable.java72
1 files changed, 0 insertions, 72 deletions
diff --git a/config-model/src/main/java/com/yahoo/searchdefinition/derived/NativeTable.java b/config-model/src/main/java/com/yahoo/searchdefinition/derived/NativeTable.java
deleted file mode 100644
index 3d1f565b793..00000000000
--- a/config-model/src/main/java/com/yahoo/searchdefinition/derived/NativeTable.java
+++ /dev/null
@@ -1,72 +0,0 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-package com.yahoo.searchdefinition.derived;
-
-/**
- * A named rank table of a certain type.
- *
- * @author geirst
- */
-public class NativeTable {
-
- private String name;
-
- private Type type;
-
- /** A table type enumeration */
- public static class Type {
-
- public static Type FIRST_OCCURRENCE = new Type("firstOccurrenceTable");
- public static Type OCCURRENCE_COUNT = new Type("occurrenceCountTable");
- public static Type WEIGHT = new Type("weightTable");
- public static Type PROXIMITY = new Type("proximityTable");
- public static Type REVERSE_PROXIMITY = new Type("reverseProximityTable");
-
- private String name;
-
- private Type(String name) {
- this.name = name;
- }
-
- public String getName() { return name; }
-
- public boolean equals(Object object) {
- if (!(object instanceof Type)) {
- return false;
- }
- Type other = (Type)object;
- return this.name.equals(other.name);
- }
-
- public int hashCode() {
- return name.hashCode();
- }
-
- public String toString() {
- return getName();
- }
- }
-
- public NativeTable(Type type, String name) {
- this.type = type;
- this.name = name;
- }
-
- public Type getType() { return type; }
-
- public String getName() { return name; }
-
- public int hashCode() {
- return type.hashCode() + 17*name.hashCode();
- }
-
- public boolean equals(Object object) {
- if (! (object instanceof NativeTable)) return false;
- NativeTable other = (NativeTable)object;
- return other.getName().equals(this.getName()) && other.getType().equals(this.getType());
- }
-
- public String toString() {
- return getType() + ": " + getName();
- }
-
-}