Package org.ldaptive.schema.transcode
Class MatchingRuleUseValueTranscoder
- java.lang.Object
-
- org.ldaptive.transcode.AbstractStringValueTranscoder<T>
-
- org.ldaptive.schema.transcode.AbstractSchemaElementValueTranscoder<MatchingRuleUse>
-
- org.ldaptive.schema.transcode.MatchingRuleUseValueTranscoder
-
- All Implemented Interfaces:
ValueTranscoder<MatchingRuleUse>
public class MatchingRuleUseValueTranscoder extends AbstractSchemaElementValueTranscoder<MatchingRuleUse>
Decodes and encodes a matching rule use for use in an ldap attribute value.
-
-
Constructor Summary
Constructors Constructor Description MatchingRuleUseValueTranscoder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MatchingRuleUse
decodeStringValue(String value)
Decodes the supplied ldap attribute value into a custom type.Class<MatchingRuleUse>
getType()
Returns the type produced by this value transcoder.-
Methods inherited from class org.ldaptive.schema.transcode.AbstractSchemaElementValueTranscoder
encodeStringValue
-
Methods inherited from class org.ldaptive.transcode.AbstractStringValueTranscoder
decodeBinaryValue, encodeBinaryValue
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.ldaptive.transcode.ValueTranscoder
decoder, encoder
-
-
-
-
Method Detail
-
decodeStringValue
public MatchingRuleUse decodeStringValue(String value)
Description copied from interface:ValueTranscoder
Decodes the supplied ldap attribute value into a custom type.- Parameters:
value
- to decode- Returns:
- decoded value
-
getType
public Class<MatchingRuleUse> getType()
Description copied from interface:ValueTranscoder
Returns the type produced by this value transcoder.- Returns:
- type produced by this value transcoder
-
-