Searched refs:hasAllOptions (Results 1 - 25 of 41) sorted by relevance

12

/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/types/
H A DAbstractAttribute.java154 public boolean hasAllOptions(Collection<String> options) method in class:AbstractAttribute
240 && hasAllOptions(options);
H A DAttribute.java170 boolean hasAllOptions(Collection<String> options); method in interface:Attribute
H A DVirtualAttribute.java150 public boolean hasAllOptions(Collection<String> options) method in class:VirtualAttribute
/forgerock/opendj-b2.6/src/server/org/opends/server/types/
H A DAttribute.java184 boolean hasAllOptions(Collection<String> options); method in interface:Attribute
H A DAttributeValueIterable.java193 if (attribute.hasAllOptions(options)) {
H A DAbstractAttribute.java178 public boolean hasAllOptions(Collection<String> options) method in class:AbstractAttribute
H A DVirtualAttribute.java183 public boolean hasAllOptions(Collection<String> options) method in class:VirtualAttribute
/forgerock/opendj2/src/server/org/opends/server/types/
H A DAttribute.java183 boolean hasAllOptions(Collection<String> options); method in interface:Attribute
H A DAttributeValueIterable.java192 if (attribute.hasAllOptions(options)) {
H A DAbstractAttribute.java177 public boolean hasAllOptions(Collection<String> options) method in class:AbstractAttribute
H A DVirtualAttribute.java182 public boolean hasAllOptions(Collection<String> options) method in class:VirtualAttribute
/forgerock/opendj2.6.2/src/server/org/opends/server/types/
H A DAttribute.java184 boolean hasAllOptions(Collection<String> options); method in interface:Attribute
H A DAttributeValueIterable.java193 if (attribute.hasAllOptions(options)) {
H A DAbstractAttribute.java178 public boolean hasAllOptions(Collection<String> options) method in class:AbstractAttribute
H A DVirtualAttribute.java183 public boolean hasAllOptions(Collection<String> options) method in class:VirtualAttribute
/forgerock/opendj2-jel-hg/src/server/org/opends/server/types/
H A DAttribute.java184 boolean hasAllOptions(Collection<String> options); method in interface:Attribute
H A DAttributeValueIterable.java193 if (attribute.hasAllOptions(options)) {
H A DAbstractAttribute.java178 public boolean hasAllOptions(Collection<String> options) method in class:AbstractAttribute
H A DVirtualAttribute.java183 public boolean hasAllOptions(Collection<String> options) method in class:VirtualAttribute
/forgerock/opendj2-hg/src/server/org/opends/server/types/
H A DAttribute.java183 boolean hasAllOptions(Collection<String> options); method in interface:Attribute
H A DAttributeValueIterable.java192 if (attribute.hasAllOptions(options)) {
H A DAbstractAttribute.java177 public boolean hasAllOptions(Collection<String> options) method in class:AbstractAttribute
H A DVirtualAttribute.java182 public boolean hasAllOptions(Collection<String> options) method in class:VirtualAttribute
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/types/
H A DAttributeBuilderTest.java1399 * Tests {@link Attribute#hasAllOptions(Collection)}.
1419 Assert.assertTrue(a.hasAllOptions(null));
1420 Assert.assertTrue(a.hasAllOptions(Collections.<String> emptySet()));
1421 Assert.assertTrue(a.hasAllOptions(Arrays.asList(options)));
1425 Assert.assertTrue(a.hasAllOptions(Arrays.asList(options).subList(1, options.length)));
1430 Assert.assertFalse(a.hasAllOptions(tmp));
1432 Assert.assertFalse(a.hasAllOptions(newHashSet("xxxx")));
1440 Assert.assertTrue(a.hasAllOptions(tmp));
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/types/
H A DAttributeBuilderTest.java1477 * Tests {@link Attribute#hasAllOptions(java.util.Collection)}.
1497 // Check hasAllOptions().
1498 Assert.assertTrue(a.hasAllOptions(Collections.<String> emptySet()));
1499 Assert.assertTrue(a.hasAllOptions(Arrays.asList(options)));
1503 Assert.assertTrue(a.hasAllOptions(Arrays.asList(options).subList(1,
1509 Assert.assertFalse(a.hasAllOptions(tmp));
1517 Assert.assertTrue(a.hasAllOptions(tmp));

Completed in 87 milliseconds

12