Interface Action<C extends Asn1Container>
-
- Type Parameters:
C- The container type
- All Known Implementing Classes:
AbstractReadBitString,AbstractReadInteger,AbstractReadOctetString,CheckNotNullLength,GrammarAction
public interface Action<C extends Asn1Container>Action interface just contains the method 'action' which must be implemented in all the implementing classes.- Author:
- Apache Directory Project
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaction(C container)The action to be executed.
-
-
-
Method Detail
-
action
void action(C container) throws org.apache.directory.api.asn1.DecoderException
The action to be executed.- Parameters:
container- The container which stores the current data- Throws:
org.apache.directory.api.asn1.DecoderException- Thrown if something went wrong.
-
-