summaryrefslogtreecommitdiffstats
path: root/vespajlib/src/main/java/com/yahoo/slime/Inserter.java
diff options
context:
space:
mode:
Diffstat (limited to 'vespajlib/src/main/java/com/yahoo/slime/Inserter.java')
-rw-r--r--vespajlib/src/main/java/com/yahoo/slime/Inserter.java20
1 files changed, 20 insertions, 0 deletions
diff --git a/vespajlib/src/main/java/com/yahoo/slime/Inserter.java b/vespajlib/src/main/java/com/yahoo/slime/Inserter.java
new file mode 100644
index 00000000000..8319efeb4f0
--- /dev/null
+++ b/vespajlib/src/main/java/com/yahoo/slime/Inserter.java
@@ -0,0 +1,20 @@
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+package com.yahoo.slime;
+
+/**
+ * Helper interface for inserting values into any of the container
+ * classes (ArrayValue, ObjectValue, or Slime). May be useful for
+ * deserializers where you can use it to decouple the actual value
+ * decoding from the container where the value should be inserted.
+ **/
+interface Inserter {
+ Cursor insertNIX();
+ Cursor insertBOOL(boolean value);
+ Cursor insertLONG(long value);
+ Cursor insertDOUBLE(double value);
+ Cursor insertSTRING(String value);
+ Cursor insertSTRING(byte[] utf8);
+ Cursor insertDATA(byte[] value);
+ Cursor insertARRAY();
+ Cursor insertOBJECT();
+}