Searched refs:VERSIONS (Results 1 - 3 of 3) sorted by relevance

/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/internalizer/
H A DVersionChecker.java125 if( version!=null && !VERSIONS.contains(version) ) {
137 private static final Set<String> VERSIONS = new HashSet<String>(Arrays.asList("1.0","2.0","2.1")); field in class:VersionChecker
/openjdk10/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/wsdl/parser/
H A DVersionChecker.java123 if( version!=null && !VERSIONS.contains(version) ) {
134 private static final Set<String> VERSIONS = new HashSet<String>(Arrays.asList("2.0","2.1")); field in class:VersionChecker
/openjdk10/test/lib/jdk/test/lib/hprof/parser/
H A DHprofReader.java52 private final static String[] VERSIONS = { field in class:HprofReader
61 // These version numbers are indices into VERSIONS. The instance data
389 int candidatesLeft = VERSIONS.length;
390 boolean[] matched = new boolean[VERSIONS.length];
399 for (int i = 0; i < VERSIONS.length; i++) {
401 if (c != VERSIONS[i].charAt(pos)) { // Not matched
404 } else if (pos == VERSIONS[i].length() - 1) { // Full match

Completed in 44 milliseconds