summaryrefslogtreecommitdiffstats
path: root/src/org/uic/barcode/asn1/datatypes/Bitstring.java
blob: 1543f6420cc523cfdf4df0f20bd6aa6bdb727301 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.uic.barcode.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 {

}