Uses of Interface
org.apache.directory.shared.ldap.entry.Value

Packages that use Value
org.apache.directory.shared.ldap.codec   
org.apache.directory.shared.ldap.codec.add   
org.apache.directory.shared.ldap.codec.modify   
org.apache.directory.shared.ldap.codec.search   
org.apache.directory.shared.ldap.entry   
org.apache.directory.shared.ldap.entry.client   
org.apache.directory.shared.ldap.filter   
org.apache.directory.shared.ldap.message   
org.apache.directory.shared.ldap.message.internal   
org.apache.directory.shared.ldap.name   
org.apache.directory.shared.ldap.schema Contains interfaces and base classes for representing the LDAP schema domain model. 
org.apache.directory.shared.ldap.schema.normalizers   
org.apache.directory.shared.ldap.util   
 

Uses of Value in org.apache.directory.shared.ldap.codec
 

Methods in org.apache.directory.shared.ldap.codec that return Value
 Value<?> AttributeValueAssertion.getAssertionValue()
          Get the assertion value
 

Methods in org.apache.directory.shared.ldap.codec with parameters of type Value
 void AttributeValueAssertion.setAssertionValue(Value<?> assertionValue)
          Set the assertion value
 

Uses of Value in org.apache.directory.shared.ldap.codec.add
 

Methods in org.apache.directory.shared.ldap.codec.add with parameters of type Value
 void AddRequestCodec.addAttributeValue(Value<?> value)
          Add a new value to the current attribute
 

Uses of Value in org.apache.directory.shared.ldap.codec.modify
 

Methods in org.apache.directory.shared.ldap.codec.modify with parameters of type Value
 void ModifyRequestCodec.addAttributeValue(Value<?> value)
          Add a new value to the current attribute
 

Uses of Value in org.apache.directory.shared.ldap.codec.search
 

Methods in org.apache.directory.shared.ldap.codec.search that return Value
 Value<?> ExtensibleMatchFilter.getMatchValue()
          Get the matchValue
 

Methods in org.apache.directory.shared.ldap.codec.search with parameters of type Value
 void ExtensibleMatchFilter.setMatchValue(Value<?> matchValue)
          Set the matchValue
 

Uses of Value in org.apache.directory.shared.ldap.entry
 

Classes in org.apache.directory.shared.ldap.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.shared.ldap.entry that return Value
 Value<T> Value.clone()
           
 Value<T> AbstractValue.clone()
          
 Value<?> EntryAttribute.get()
           Get the first value of this attribute.
 Value<?> EntryAttribute.get(int i)
           Get the nth value of this attribute.
 

Methods in org.apache.directory.shared.ldap.entry that return types with arguments of type Value
 java.util.Iterator<Value<?>> EntryAttribute.getAll()
          Returns an iterator over all the attribute's values.
 

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

Method parameters in org.apache.directory.shared.ldap.entry with type arguments of type Value
 int EntryAttribute.put(java.util.List<Value<?>> vals)
           Puts a list of values into this attribute.
 

Constructors in org.apache.directory.shared.ldap.entry with parameters of type Value
DefaultServerAttribute(AttributeType attributeType, Value<?>... vals)
          Doc me more! 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.
DefaultServerAttribute(java.lang.String upId, AttributeType attributeType, Value<?>... vals)
          Doc me more! 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.
 

Uses of Value in org.apache.directory.shared.ldap.entry.client
 

Fields in org.apache.directory.shared.ldap.entry.client with type parameters of type Value
protected  java.util.Set<Value<?>> DefaultClientAttribute.values
          The set of contained values
 

Methods in org.apache.directory.shared.ldap.entry.client that return Value
 Value<?> DefaultClientAttribute.get()
           Get the first value of this attribute.
 Value<?> DefaultClientAttribute.get(int i)
           Get the nth value of this attribute.
 

Methods in org.apache.directory.shared.ldap.entry.client that return types with arguments of type Value
 java.util.Iterator<Value<?>> DefaultClientAttribute.getAll()
          Returns an iterator over all the attribute's values.
 java.util.Iterator<Value<?>> DefaultClientAttribute.iterator()
          An iterator on top of the stored values.
 

Methods in org.apache.directory.shared.ldap.entry.client with parameters of type Value
 void DefaultClientEntry.add(java.lang.String upId, Value<?>... values)
          Add an attribute (represented by its ID and Value values) into an entry.
 int DefaultClientAttribute.add(Value<?>... vals)
          Adds some values to this attribute.
 boolean DefaultClientEntry.contains(java.lang.String upId, Value<?>... values)
          Checks if an entry contains an attribute with some values.
 boolean DefaultClientAttribute.contains(Value<?>... vals)
           Indicates whether the specified values are some of the attribute's values.
 EntryAttribute DefaultClientEntry.put(java.lang.String upId, Value<?>... values)
           Put an attribute (represented by its ID and some values) into an entry.
 int DefaultClientAttribute.put(Value<?>... vals)
          Puts some values to this attribute.
 boolean DefaultClientEntry.remove(java.lang.String upId, Value<?>... values)
           Removes the specified values from an attribute.
 boolean DefaultClientAttribute.remove(Value<?>... vals)
           Removes all the values that are equal to the given values.
 

Method parameters in org.apache.directory.shared.ldap.entry.client with type arguments of type Value
 int DefaultClientAttribute.put(java.util.List<Value<?>> vals)
           Puts a list of values into this attribute.
 

Constructors in org.apache.directory.shared.ldap.entry.client with parameters of type Value
DefaultClientAttribute(java.lang.String upId, Value<?>... vals)
          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.
 

Uses of Value in org.apache.directory.shared.ldap.filter
 

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

Methods in org.apache.directory.shared.ldap.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<?> ExtensibleNode.getEscapedValue()
           
 Value<?> SimpleNode.getEscapedValue()
           
 Value<?> ExtensibleNode.getValue()
          Gets the value.
 Value<T> SimpleNode.getValue()
          Gets the value.
 

Methods in org.apache.directory.shared.ldap.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.shared.ldap.filter with parameters of type Value
ApproximateNode(java.lang.String attribute, Value<T> value)
          Creates a new ApproximateNode object.
EqualityNode(java.lang.String attribute, Value<T> value)
          Creates a new Equality object.
EqualityNode(java.lang.String attribute, Value<T> value, AssertionType assertionType)
          Creates a new Equality object.
ExtensibleNode(java.lang.String attribute, Value<?> value, java.lang.String matchingRuleId, boolean dnAttributes)
          Creates a new ExtensibleNode object.
GreaterEqNode(java.lang.String attribute, Value<T> value)
          Creates a new GreaterOrEqual object.
LessEqNode(java.lang.String attribute, Value<T> value)
          Creates a new LessEqNode object.
SimpleNode(java.lang.String attribute, Value<T> value, AssertionType assertionType)
          Creates a new SimpleNode object.
 

Uses of Value in org.apache.directory.shared.ldap.message
 

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

Uses of Value in org.apache.directory.shared.ldap.message.internal
 

Methods in org.apache.directory.shared.ldap.message.internal that return Value
 Value<?> InternalCompareRequest.getAssertionValue()
          Gets the attribute value to use in making the comparison.
 

Uses of Value in org.apache.directory.shared.ldap.name
 

Methods in org.apache.directory.shared.ldap.name that return Value
 Value<?> AVA.getNormValue()
          Get the Value of a AVA
 Value<?> AVA.getUpValue()
          Get the User Provided Value of a AVA
 

Methods in org.apache.directory.shared.ldap.name with parameters of type Value
 void AVA.setValue(Value<?> upValue, Value<?> normValue)
          Store the value of a AVA.
 void AVA.setValue(Value<?> upValue, Value<?> normValue)
          Store the value of a AVA.
 

Constructors in org.apache.directory.shared.ldap.name with parameters of type Value
AVA(java.lang.String upType, java.lang.String normType, Value<?> upValue, Value<?> normValue)
          Construct an AVA.
AVA(java.lang.String upType, java.lang.String normType, Value<?> upValue, Value<?> normValue)
          Construct an AVA.
AVA(java.lang.String upType, java.lang.String normType, Value<?> upValue, Value<?> normValue, java.lang.String upName)
          Construct an AVA.
AVA(java.lang.String upType, java.lang.String normType, Value<?> upValue, Value<?> normValue, java.lang.String upName)
          Construct an AVA.
 

Uses of Value in org.apache.directory.shared.ldap.schema
 

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

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

Uses of Value in org.apache.directory.shared.ldap.schema.normalizers
 

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

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

Uses of Value in org.apache.directory.shared.ldap.util
 

Methods in org.apache.directory.shared.ldap.util with parameters of type Value
static boolean AttributeUtils.containsValue(javax.naming.directory.Attribute attr, Value<?> compared, AttributeType type)
          Check if an attribute contains a specific value, using the associated matchingRule for that
 



Copyright © 2003-2011 Apache Software Foundation. All Rights Reserved.