We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2409037 commit 4e876d6Copy full SHA for 4e876d6
src/main/java/org/scijava/convert/ConvertService.java
@@ -83,6 +83,12 @@ public interface ConvertService extends
83
*/
84
boolean supports(Object src, Type dest);
85
86
+ /**
87
+ * @return A collection of instances that could be converted to the
88
+ * specified class.
89
+ */
90
+ Collection<Object> getCompatibleInputs(Class<?> dest);
91
+
92
// -- Deprecated API --
93
94
/**
@@ -112,6 +118,4 @@ public interface ConvertService extends
112
118
113
119
@Deprecated
114
120
boolean supports(Class<?> src, Type dest);
115
-
116
- Collection<Object> getCompatibleInputs(Class<?> dest);
117
121
}
0 commit comments