17 lines
300 B
Java
17 lines
300 B
Java
package javax.baja.seriestransform.graph;
|
|
|
|
import javax.baja.naming.SlotPath;
|
|
import javax.baja.sys.BValue;
|
|
|
|
public interface QueryParams {
|
|
boolean containsSlotPath(SlotPath slotPath);
|
|
|
|
BValue get(SlotPath slotPath);
|
|
|
|
SlotPath[] getSlotPaths();
|
|
|
|
boolean isEmpty();
|
|
|
|
int size();
|
|
}
|