com.evgenbar.binarydecoder.DecodeUnsigned Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-binary-decoder Show documentation
Show all versions of java-binary-decoder Show documentation
Reflection based decoder for decoding binary stream of C-like structures
The newest version!
package com.evgenbar.binarydecoder;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface DecodeUnsigned {
public enum IntegerType { UnsignedByte, UnsignedShort, UnsignedInt }
IntegerType value() default IntegerType.UnsignedByte;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy