Uses of Interface
org.apache.directory.api.ldap.model.entry.Value

Packages that use Value
org.apache.directory.api.ldap.model.entry   
org.apache.directory.api.ldap.model.filter   
org.apache.directory.api.ldap.model.message   
org.apache.directory.api.ldap.model.name   
org.apache.directory.api.ldap.model.schema Contains interfaces and base classes for representing the LDAP schema domain model. 
org.apache.directory.api.ldap.model.schema.normalizers   
 

Uses of Value in org.apache.directory.api.ldap.model.entry
 

Classes in org.apache.directory.api.ldap.model.entry that implement Value
 class AbstractValue<T>
          A wrapper around byte[] values in entries.
 class BinaryValue
          A server side schema aware wrapper around a binary attribute value.
 class StringValue
          A server side schema aware wrapper around a String attribute value.
 

Methods in org.apache.directory.api.ldap.model.entry that return Value
 Value<T> Value.clone()
          Clone a Value
 Value<T> AbstractValue.clone()
          Clone a Value
 Value<?> DefaultAttribute.get()
           Get the first value of this attribute.
 Value<?> Attribute.get()
           Get the first value of this attribute.
 

Methods in org.apache.directory.api.ldap.model.entry that return types with arguments of type Value
 Iterator<Value<?>> DefaultAttribute.iterator()
          An iterator on top of the stored values.
 

Methods in org.apache.directory.api.ldap.model.entry with parameters of type Value
 void ImmutableEntry.add(AttributeType attributeType, Value<?>... values)
           Add an attribute (represented by its AttributeType and some values) into an entry.
 void Entry.add(AttributeType attributeType, Value<?>... values)
           Add an attribute (represented by its AttributeType and some values) into an entry.
 void DefaultEntry.add(AttributeType attributeType, Value<?>... values)
           Add an attribute (represented by its AttributeType and some values) into an entry.
 void ImmutableEntry.add(String upId, AttributeType attributeType, Value<?>... values)
           Add an attribute (represented by its AttributeType and some values) into an entry.
 void Entry.add(String upId, AttributeType attributeType, Value<?>... values)
           Add an attribute (represented by its AttributeType and some values) into an entry.
 void DefaultEntry.add(String upId, AttributeType attributeType, Value<?>... values)
           Add an attribute (represented by its AttributeType and some values) into an entry.
 void ImmutableEntry.add(String upId, Value<?>... values)
          Add some Values to the current Entry.
 void Entry.add(String upId, Value<?>... values)
          Add some Values to the current Entry.
 void DefaultEntry.add(String upId, Value<?>... values)
          Add some Values to the current Entry.
 int DefaultAttribute.add(Value<?>... vals)
          Adds some values to this attribute.
 int Attribute.add(Value<?>... val)
          Adds some values to this attribute.
 int BinaryValue.compareTo(Value<byte[]> value)
           
 int StringValue.compareTo(Value<String> value)
           
 boolean ImmutableEntry.contains(AttributeType attributeType, Value<?>... values)
          Checks if an entry contains an attribute with some given binary values.
 boolean Entry.contains(AttributeType attributeType, Value<?>... values)
          Checks if an entry contains an attribute with some given binary values.
 boolean DefaultEntry.contains(AttributeType attributeType, Value<?>... values)
          Checks if an entry contains an attribute with some given binary values.
 boolean ImmutableEntry.contains(String upId, Value<?>... values)
          Checks if an entry contains an attribute with some values.
 boolean Entry.contains(String upId, Value<?>... values)
          Checks if an entry contains an attribute with some values.
 boolean DefaultEntry.contains(String upId, Value<?>... values)
          Checks if an entry contains an attribute with some values.
 boolean DefaultAttribute.contains(Value<?>... vals)
           Indicates whether the specified values are some of the attribute's values.
 boolean Attribute.contains(Value<?>... vals)
           Indicates whether the specified values are some of the attribute's values.
protected  void DefaultEntry.createAttribute(String upId, AttributeType attributeType, Value<?>... values)
          Add a new EntryAttribute, with its upId.
 Attribute ImmutableEntry.put(AttributeType attributeType, Value<?>... values)
           Places a new attribute with the supplied AttributeType and some values into the attribute collection.
 Attribute Entry.put(AttributeType attributeType, Value<?>... values)
           Places a new attribute with the supplied AttributeType and some values into the attribute collection.
 Attribute DefaultEntry.put(AttributeType attributeType, Value<?>... values)
           Places a new attribute with the supplied AttributeType and some values into the attribute collection.
 Attribute ImmutableEntry.put(String upId, AttributeType attributeType, Value<?>... values)
           Places a new attribute with the supplied AttributeType and some values into the attribute collection.
 Attribute Entry.put(String upId, AttributeType attributeType, Value<?>... values)
           Places a new attribute with the supplied AttributeType and some values into the attribute collection.
 Attribute DefaultEntry.put(String upId, AttributeType attributeType, Value<?>... values)
           Places a new attribute with the supplied AttributeType and some values into the attribute collection.
 Attribute ImmutableEntry.put(String upId, Value<?>... values)
           Put an attribute (represented by its ID and some values) into an entry.
 Attribute Entry.put(String upId, Value<?>... values)
           Put an attribute (represented by its ID and some values) into an entry.
 Attribute DefaultEntry.put(String upId, Value<?>... values)
           Put an attribute (represented by its ID and some values) into an entry.
 boolean ImmutableEntry.remove(AttributeType attributeType, Value<?>... values)
           Removes the specified values from an attribute.
 boolean Entry.remove(AttributeType attributeType, Value<?>... values)
           Removes the specified values from an attribute.
 boolean DefaultEntry.remove(AttributeType attributeType, Value<?>... values)
           Removes the specified values from an attribute.
 boolean ImmutableEntry.remove(String upId, Value<?>... values)
           Removes the specified values from an attribute.
 boolean Entry.remove(String upId, Value<?>... values)
           Removes the specified values from an attribute.
 boolean DefaultEntry.remove(String upId, Value<?>... values)
           Removes the specified values from an attribute.
 boolean DefaultAttribute.remove(Value<?>... vals)
           Removes all the values that are equal to the given values.
 boolean Attribute.remove(Value<?>... vals)
           Removes all the values that are equal to the given values.
 

Constructors in org.apache.directory.api.ldap.model.entry with parameters of type Value
DefaultAttribute(AttributeType attributeType, Value<?>... vals)
          Create a new instance of a schema aware Attribute, with some values.
DefaultAttribute(String upId, AttributeType attributeType, Value<?>... vals)
          Create a new instance of a schema aware Attribute, with some values, and a user provided ID.
If the value does not correspond to the same attributeType, then it's wrapped value is copied into a new Value which uses the specified attributeType.
DefaultAttribute(String upId, Value<?>... vals)
          Create a new instance of an Attribute, with some values, and a user provided ID.
If the value does not correspond to the same attributeType, then it's wrapped value is copied into a new ClientValue which uses the specified attributeType.
DefaultModification(ModificationOperation operation, AttributeType attributeType, Value<?>... values)
          Creates a new instance of DefaultModification.
DefaultModification(ModificationOperation operation, String attributeId, Value<?>... values)
          Creates a new instance of DefaultModification.
 

Uses of Value in org.apache.directory.api.ldap.model.filter
 

Fields in org.apache.directory.api.ldap.model.filter declared as Value
protected  Value<T> SimpleNode.value
          the value
 

Methods in org.apache.directory.api.ldap.model.filter that return Value
protected static Value<?> AbstractExprNode.escapeFilterValue(Value<?> value)
          Handles the escaping of special characters in LDAP search filter assertion values using the <valueencoding> rule as described in RFC 4515.
 Value<?> SimpleNode.getEscapedValue()
           
 Value<?> ExtensibleNode.getEscapedValue()
           
 Value<T> SimpleNode.getValue()
          Gets the value.
 Value<?> ExtensibleNode.getValue()
          Gets the value.
 

Methods in org.apache.directory.api.ldap.model.filter with parameters of type Value
protected static Value<?> AbstractExprNode.escapeFilterValue(Value<?> value)
          Handles the escaping of special characters in LDAP search filter assertion values using the <valueencoding> rule as described in RFC 4515.
 void ExtensibleNode.setValue(Value<?> value)
          Sets the value.
 void SimpleNode.setValue(Value<T> value)
          Sets the value of this node.
 

Constructors in org.apache.directory.api.ldap.model.filter with parameters of type Value
ApproximateNode(AttributeType attributeType, Value<T> value)
          Creates a new ApproximateNode object.
ApproximateNode(String attribute, Value<T> value)
          Creates a new ApproximateNode object.
EqualityNode(AttributeType attributeType, Value<T> value)
          Creates a new Equality object.
EqualityNode(String attribute, Value<T> value)
          Creates a new Equality object.
ExtensibleNode(AttributeType attributeType, Value<?> value, String matchingRuleId, boolean dnAttributes)
          Creates a new ExtensibleNode object.
ExtensibleNode(String attribute, Value<?> value, String matchingRuleId, boolean dnAttributes)
          Creates a new ExtensibleNode object.
GreaterEqNode(AttributeType attributeType, Value<T> value)
          Creates a new GreaterOrEqual object.
GreaterEqNode(String attribute, Value<T> value)
          Creates a new GreaterOrEqual object.
LessEqNode(AttributeType attributeType, Value<T> value)
          Creates a new LessEqNode object.
LessEqNode(String attribute, Value<T> value)
          Creates a new LessEqNode object.
SimpleNode(AttributeType attributeType, Value<T> value, AssertionType assertionType)
          Creates a new SimpleNode object.
SimpleNode(String attribute, Value<T> value, AssertionType assertionType)
          Creates a new SimpleNode object.
 

Uses of Value in org.apache.directory.api.ldap.model.message
 

Methods in org.apache.directory.api.ldap.model.message that return Value
 Value<?> CompareRequestImpl.getAssertionValue()
          Gets the attribute value to use in making the comparison.
 Value<?> CompareRequest.getAssertionValue()
          Gets the attribute value to use in making the comparison.
 

Methods in org.apache.directory.api.ldap.model.message with parameters of type Value
 void AddRequestImpl.addAttributeValue(Value<?> value)
          Add a new value to the current attribute
 

Uses of Value in org.apache.directory.api.ldap.model.name
 

Methods in org.apache.directory.api.ldap.model.name that return Value
 Value<?> Rdn.getNormValue()
          Return the normalized value, or the first one of we have more than one (the lowest)
 Value<?> Ava.getNormValue()
          Get the Value of a Ava
 Value<?> Rdn.getValue()
          Return the User Provided value
 Value<?> Ava.getValue()
          Get the User Provided Value of a Ava
 

Uses of Value in org.apache.directory.api.ldap.model.schema
 

Methods in org.apache.directory.api.ldap.model.schema that return Value
abstract  Value<?> Normalizer.normalize(Value<?> value)
          Gets the normalized value.
 

Methods in org.apache.directory.api.ldap.model.schema with parameters of type Value
abstract  Value<?> Normalizer.normalize(Value<?> value)
          Gets the normalized value.
 

Uses of Value in org.apache.directory.api.ldap.model.schema.normalizers
 

Methods in org.apache.directory.api.ldap.model.schema.normalizers that return Value
 Value<?> UniqueMemberNormalizer.normalize(Value<?> value)
           
 Value<?> TelephoneNumberNormalizer.normalize(Value<?> value)
          Gets the normalized value.
 Value<?> RegexNormalizer.normalize(Value<?> value)
          Gets the normalized value.
 Value<?> ObjectIdentifierNormalizer.normalize(Value<?> value)
          Gets the normalized value.
 Value<?> NumericNormalizer.normalize(Value<?> value)
          Gets the normalized value.
 Value<?> NoOpNormalizer.normalize(Value<?> value)
          Returns the value argument as-is without alterations all the time.
 Value<?> NameOrNumericIdNormalizer.normalize(Value<?> value)
          Gets the normalized value.
 Value<?> GeneralizedTimeNormalizer.normalize(Value<?> value)
          Gets the normalized value.
 Value<?> DnNormalizer.normalize(Value<?> value)
          Gets the normalized value.
 Value<?> DefaultStringNormalizer.normalize(Value<?> value)
          Gets the normalized value.
 Value<?> DeepTrimToLowerNormalizer.normalize(Value<?> value)
          Gets the normalized value.
 Value<?> DeepTrimNormalizer.normalize(Value<?> value)
          Gets the normalized value.
 Value<?> CachingNormalizer.normalize(Value<?> value)
          Gets the normalized value.
 Value<?> BooleanNormalizer.normalize(Value<?> value)
          Gets the normalized value.
 

Methods in org.apache.directory.api.ldap.model.schema.normalizers with parameters of type Value
 Value<?> UniqueMemberNormalizer.normalize(Value<?> value)
           
 Value<?> TelephoneNumberNormalizer.normalize(Value<?> value)
          Gets the normalized value.
 Value<?> RegexNormalizer.normalize(Value<?> value)
          Gets the normalized value.
 Value<?> ObjectIdentifierNormalizer.normalize(Value<?> value)
          Gets the normalized value.
 Value<?> NumericNormalizer.normalize(Value<?> value)
          Gets the normalized value.
 Value<?> NoOpNormalizer.normalize(Value<?> value)
          Returns the value argument as-is without alterations all the time.
 Value<?> NameOrNumericIdNormalizer.normalize(Value<?> value)
          Gets the normalized value.
 Value<?> GeneralizedTimeNormalizer.normalize(Value<?> value)
          Gets the normalized value.
 Value<?> DnNormalizer.normalize(Value<?> value)
          Gets the normalized value.
 Value<?> DefaultStringNormalizer.normalize(Value<?> value)
          Gets the normalized value.
 Value<?> DeepTrimToLowerNormalizer.normalize(Value<?> value)
          Gets the normalized value.
 Value<?> DeepTrimNormalizer.normalize(Value<?> value)
          Gets the normalized value.
 Value<?> CachingNormalizer.normalize(Value<?> value)
          Gets the normalized value.
 Value<?> BooleanNormalizer.normalize(Value<?> value)
          Gets the normalized value.
 



Copyright © 2003-2013 The Apache Software Foundation. All Rights Reserved.