Sha256: 53fba7f9f0d286190179c4fcffcf94f71264801793e305584299497c0be6d9f6
Contents?: true
Size: 448 Bytes
Versions: 73
Compression:
Stored size: 448 Bytes
Contents
package sh.calaba.instrumentationbackend.query.ast; import java.util.List; public enum UIQueryDirection implements UIQueryAST { DESCENDANT, CHILD, PARENT, SIBLING; @SuppressWarnings("rawtypes") @Override public List evaluateWithViews(List inputViews, UIQueryDirection direction, UIQueryVisibility visibility) { //Never called. Not so pretty, I know. throw new UnsupportedOperationException("This method should never be called"); } }
Version data entries
73 entries across 73 versions & 2 rubygems