JAL-934 - standard label font functions
[jalview.git] / src / jalview / ws / params / ValueConstrainI.java
index fa24ba0..6941d48 100644 (file)
@@ -26,8 +26,12 @@ import compbio.metadata.ValueConstrain.Type;
 public interface ValueConstrainI
 {
 
-  // TODO: remove dependence on ValueConstraint.Type
-  Type getType();
+  public enum ValueType {
+    Integer,
+    Float,
+    String
+  };
+  ValueType getType();
 
   Number getMax();