|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
|
|
package jdk.jfr; |
|
|
|
import java.lang.annotation.ElementType; |
|
import java.lang.annotation.Retention; |
|
import java.lang.annotation.RetentionPolicy; |
|
import java.lang.annotation.Target; |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
@MetadataDefinition |
|
@ContentType |
|
@Label("Unsigned Value") |
|
@Description("Value should be interpreted as unsigned data type") |
|
@Retention(RetentionPolicy.RUNTIME) |
|
@Target({ ElementType.FIELD, ElementType.TYPE }) |
|
public @interface Unsigned { |
|
} |