mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-25 22:02:05 +01:00
Add javadoc for Feature
This commit is contained in:
parent
73c7498f17
commit
61c8e908a2
1 changed files with 7 additions and 0 deletions
|
@ -21,6 +21,13 @@ import java.util.Map;
|
|||
import org.bouncycastle.bcpg.sig.Features;
|
||||
|
||||
public enum Feature {
|
||||
|
||||
/**
|
||||
* Add modification detection package.
|
||||
*
|
||||
* @see <a href="https://tools.ietf.org/html/rfc4880#section-5.14">
|
||||
* RFC-4880 §5.14: Modification Detection Code Packet</a>
|
||||
*/
|
||||
MODIFICATION_DETECTION(Features.FEATURE_MODIFICATION_DETECTION),
|
||||
;
|
||||
|
||||
|
|
Loading…
Reference in a new issue