summaryrefslogtreecommitdiffstats
path: root/src/net/gcdc/asn1/datatypes/Bitstring.java
blob: 387f2aa74ecf5be4e9cf960f26d2dacc5b4de1b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package net.gcdc.asn1.datatypes;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/** This annotation is used for bitstrings.
 * In UPER, a SEQUENCE OF Booleans would look exactly as bitstring, so this annotation can be
 * omitted for {@code List<Boolean>}.
 */
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface Bitstring {

}