@Retention(value=RUNTIME) @Target(value=TYPE) @Documented public @interface Enum
@Enum("ClothingSize")
public enum ShirtSize {
S,
M,
L,
XL,
XXL,
HULK
}
Schema generation of this would result in a stanza such as:
enum ClothingSize {
HULK
L
M
S
XL
XXL
}
public abstract String value
Copyright © 2019 – 2022 Eclipse Foundation. All rights reserved.
Use is subject to license terms.