Searched refs:attrVal (Results 1 - 7 of 7) sorted by relevance

/openjdk9/jdk/src/java.naming/share/classes/javax/naming/directory/
H A DAttribute.java134 * @param attrVal The possibly null value to check. If null, check
136 * @return true if attrVal is one of this attribute's values; false otherwise.
140 boolean contains(Object attrVal); argument
144 * {@code attrVal} is already in the attribute, this method does nothing.
145 * If the attribute values are ordered, {@code attrVal} is added to the end of
151 * @param attrVal The new possibly null value to add. If null, null
155 boolean add(Object attrVal); argument
161 * {@code attrVal} is removed and attribute values at indices greater
296 * This method adds {@code attrVal} to the list of attribute values at
301 * If the attribute values are unordered and already have {@code attrVal},
312 add(int ix, Object attrVal) argument
334 set(int ix, Object attrVal) argument
[all...]
H A DBasicAttribute.java318 * {@code Object.equals()} is used when comparing {@code attrVal}
319 * with this attribute's values except when {@code attrVal} is an array.
324 public boolean contains(Object attrVal) { argument
325 return (find(attrVal) >= 0);
396 * By default, {@code Object.equals()} is used when comparing {@code attrVal}
397 * with this attribute's values except when {@code attrVal} is an array.
402 public boolean add(Object attrVal) { argument
403 if (isOrdered() || (find(attrVal) < 0)) {
404 values.addElement(attrVal);
414 * By default, {@code Object.equals()} is used when comparing {@code attrVal}
452 add(int ix, Object attrVal) argument
460 set(int ix, Object attrVal) argument
[all...]
/openjdk9/jdk/test/javax/print/attribute/
H A DAttributeTest.java48 Object attrVal = service[x].getSupportedAttributeValues(Media.class, flavors[y], null);
49 if (attrVal == null) {
52 Media attr[] = (Media[]) attrVal;
/openjdk9/jdk/src/java.naming/share/classes/com/sun/jndi/ldap/
H A DLdapAttribute.java63 * @param attrVal The value to be added. If null, a null value is added to
67 public boolean add(Object attrVal) { argument
70 values.addElement(attrVal);
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DXSAttributeChecker.java1042 String attrVal = DOMUtil.getValue(sattr);
1074 ((Vector)attrValues[ATTIDX_NONSCHEMA]).addElement(attrVal);
1078 //otherValues.put(attrName, attrVal);
1086 // values.addElement(attrVal);
1091 // values.addElement(attrVal);
1119 Object avalue = dv.validate(attrVal, schemaDoc.fValidationContext, null);
1128 attrValues[oneAttr.valueIndex] = attrVal;
1132 attrValues[oneAttr.valueIndex] = validate(attrValues, attrName, attrVal, oneAttr.dvIndex, schemaDoc);
/openjdk9/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DXMLKit.java2985 public boolean test(String attrVal) { argument
2986 return attrVal != null; // override this
3004 public static Filter attrFilter(String attrName, final String attrVal) { argument
3005 if (attrVal == null) {
3012 return attrVal.equals(attrVal2);
3017 return "<AttrFilter name='" + attrName + "' value='" + attrVal + "'/>";
/openjdk9/jdk/src/java.base/share/classes/sun/security/tools/keytool/
H A DMain.java2445 Object attrVal = attr.getAttributeValue();
2446 out.println(attrVal instanceof String[] ?
2447 Arrays.toString((String[]) attrVal) :
2448 attrVal);

Completed in 204 milliseconds