aboutsummaryrefslogtreecommitdiffstats
path: root/linguistics/src/main/java/com/yahoo/language/detect/AbstractDetector.java
diff options
context:
space:
mode:
Diffstat (limited to 'linguistics/src/main/java/com/yahoo/language/detect/AbstractDetector.java')
-rw-r--r--linguistics/src/main/java/com/yahoo/language/detect/AbstractDetector.java25
1 files changed, 25 insertions, 0 deletions
diff --git a/linguistics/src/main/java/com/yahoo/language/detect/AbstractDetector.java b/linguistics/src/main/java/com/yahoo/language/detect/AbstractDetector.java
new file mode 100644
index 00000000000..f80f876d248
--- /dev/null
+++ b/linguistics/src/main/java/com/yahoo/language/detect/AbstractDetector.java
@@ -0,0 +1,25 @@
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+package com.yahoo.language.detect;
+
+import com.yahoo.text.Utf8;
+
+import java.nio.ByteBuffer;
+
+/**
+ * @author <a href="mailto:simon@yahoo-inc.com">Simon Thoresen</a>
+ */
+public abstract class AbstractDetector implements Detector {
+
+ @Override
+ public final Detection detect(String input, Hint hint) {
+ byte[] buf = Utf8.toBytes(input);
+ return detect(buf, 0, buf.length, hint);
+ }
+
+ @Override
+ public final Detection detect(ByteBuffer input, Hint hint) {
+ byte[] buf = new byte[input.remaining()];
+ input.get(buf, 0, buf.length);
+ return detect(buf, 0, buf.length, hint);
+ }
+}