All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ceylon.language.Byte Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
package ceylon.language;

import com.redhat.ceylon.compiler.java.Util;
import com.redhat.ceylon.compiler.java.metadata.Ceylon;
import com.redhat.ceylon.compiler.java.metadata.Class;
import com.redhat.ceylon.compiler.java.metadata.Defaulted;
import com.redhat.ceylon.compiler.java.metadata.Ignore;
import com.redhat.ceylon.compiler.java.metadata.Name;
import com.redhat.ceylon.compiler.java.metadata.SatisfiedTypes;
import com.redhat.ceylon.compiler.java.metadata.Transient;
import com.redhat.ceylon.compiler.java.metadata.ValueType;
import com.redhat.ceylon.compiler.java.runtime.model.ReifiedType;
import com.redhat.ceylon.compiler.java.runtime.model.TypeDescriptor;

@Ceylon(major = 8)
@SatisfiedTypes({
    "ceylon.language::Binary",
    "ceylon.language::Invertible",
    "ceylon.language::Enumerable"
})
@Class(extendsType="ceylon.language::Object", basic = false, identifiable = false)
@ValueType
@SharedAnnotation$annotation$
@FinalAnnotation$annotation$
@NativeAnnotation$annotation$(backends={})
public final class Byte implements 
        Binary, Invertible, 
        Enumerable, ReifiedType, 
        java.io.Serializable {
    
    private static final long serialVersionUID = -8113399654156430108L;
    
    @Ignore
    public final static TypeDescriptor $TypeDescriptor$ = TypeDescriptor.klass(Byte.class);


    @Ignore
    @Override
    public Invertible$impl $ceylon$language$Invertible$impl() {
        throw Util.makeUnimplementedMixinAccessException();
    }

    @Ignore
    @Override
    public Binary$impl $ceylon$language$Binary$impl() {
        throw Util.makeUnimplementedMixinAccessException();
    }

    @Ignore
    @Override
    public Enumerable$impl $ceylon$language$Enumerable$impl() {
        throw Util.makeUnimplementedMixinAccessException();
    }

    @Ignore
    final byte value;
    
    public Byte(@Name("congruent") long congruent) {
        value = (byte) congruent;
    }
    
    @Ignore
    public Byte(byte value) {
        this.value = value;
    }
    
    @Ignore
    public static Byte instance(byte value) {
        return new Byte(value);
    }
    
    @Ignore
    public byte byteValue() {
        return value;
    }
    
    @Ignore
    @Override
    public TypeDescriptor $getType$() {
        return $TypeDescriptor$;
    }
    
    @Transient
    public boolean getEven() {
        return (value & 1) == 0;
    }

    @Ignore
    public static boolean getEven(byte value) {
        return (value & 1) == 0;
    }

    @Transient
    public boolean getZero() {
        return value == 0;
    }

    @Ignore
    public static boolean getZero(byte value) {
        return value == 0;
    }

    @Transient
    public boolean getUnit() {
        return value == 1;
    }

    @Ignore
    public static boolean getUnit(byte value) {
        return value == 1;
    }

    @Transient
    @Override
    public Byte getNegated() {
        return new Byte((byte)-value);
    }

    @Ignore
    public static byte getNegated(byte value) {
        return (byte)-value;
    }

    @Override
    public Byte plus(@Name("other") Byte other) {
        return new Byte((byte) (value+other.value));
    }

    @Ignore
    public static byte plus(byte value, byte other) {
        return (byte) (value+other);
    }

    @Ignore
    @Override
    public Byte minus(@Name("other") Byte other) {
        return new Byte((byte) (value-other.value));
    }

    @Ignore
    public static byte minus(byte value, byte other) {
        return (byte) (value-other);
    }

    @Override
    public Byte and(@Name("other") Byte other) {
        return new Byte((byte) (value & other.value));
    }

    @Ignore
    public static byte and(byte value, byte other) {
        return (byte) (value & other);
    }

    @Override
    public Byte or(@Name("other") Byte other) {
        return new Byte((byte) (value | other.value));
    }

    @Ignore
    public static byte or(byte value, byte other) {
        return (byte) (value | other);
    }

    @Override
    public Byte xor(@Name("other") Byte other) {
        return new Byte((byte) (value ^ other.value));
    }

    @Ignore
    public static byte xor(byte value, byte other) {
        return (byte) (value ^ other);
    }

    @Override
    @Transient
    public Byte getNot() {
        return new Byte((byte) ~value);
    }
    
    @Ignore
    public static byte getNot(byte value) {
        return (byte) ~value;
    }
    
    @Override
    @AliasesAnnotation$annotation$(aliases = "leftShift")
    public Byte leftLogicalShift(@Name("shift") long shift) {
        return new Byte((byte) (value<<(shift&7)));
    }

    @Ignore
    public static byte leftLogicalShift(byte value, long shift) {
        return (byte) (value<<(shift&7));
    }

    @Override
    public Byte rightArithmeticShift(@Name("shift") long shift) {
        return new Byte((byte) (value>>(shift&7)));
    }

    @Ignore
    public static byte rightArithmeticShift(byte value, long shift) {
        return (byte) (value>>(shift&7));
    }

    @Override
    @AliasesAnnotation$annotation$(aliases = "rightShift")
    public Byte rightLogicalShift(@Name("shift") long shift) {
        return new Byte((byte) ((0xff&value)>>>(shift&7)));
    }

    @Ignore
    public static byte rightLogicalShift(byte value, long shift) {
        return (byte) ((0xff&value)>>>(shift&7));
    }

    @Override
    public Byte clear(@Name("index") long index) {
        if (index < 0 || index > 7) {
            return this;
        }
        int mask = 1 << index;
        return new Byte((byte) ((0xff&value) & ~mask));
    }

    @Ignore
    public static byte clear(byte value, long index) {
        if (index < 0 || index > 7) {
            return value;
        }
        int mask = 1 << index;
        return (byte) ((0xff&value) & ~mask);
    }

    @Override
    public Byte flip(@Name("index") long index) {
        if (index < 0 || index > 7) {
            return this;
        }
        int mask = 1 << index;
        return new Byte((byte) ((0xff&value) ^ mask));
    }

    @Ignore
    public static byte flip(byte value, long index) {
        if (index < 0 || index > 7) {
            return value;
        }
        int mask = 1 << index;
        return (byte) ((0xff&value) ^ mask);
    }

    @Override
    @Ignore
    public Byte set(long index) {
        return set(index, true);
    }

    @Ignore
    public static byte set(byte value, long index) {
        return set(value, index, true);
    }

    @Override
    public Byte set(@Name("index") long index, 
            @Name("bit") @Defaulted boolean bit) {
        if (index < 0 || index > 7) {
            return this;
        }
        int mask = 1 << index;
        int masked = bit ? 
                (0xff&value) | mask : 
                (0xff&value) & ~mask;
        return new Byte((byte) masked);
    }

    @Ignore
    public static byte set(byte value, long index, boolean bit) {
        if (index < 0 || index > 7) {
            return value;
        }
        int mask = 1 << index;
        int masked = bit ? 
                (0xff&value) | mask : 
                (0xff&value) & ~mask;
        return (byte) masked;
    }

    @Override
    @Ignore
    public boolean set$bit(long index) {
        return true;
    }

    @Override
    public boolean get(@Name("index") long index) {
        if (index < 0 || index > 7) {
            return false;
        }
        int mask = 1 << index;
        return ((0xff&value) & mask) != 0;
    }

    @Ignore
    public static boolean get(byte value, long index) {
        if (index < 0 || index > 7) {
            return false;
        }
        int mask = 1 << index;
        return ((0xff&value) & mask) != 0;
    }
    
    public long getUnsigned() {
        return 0xff&value;
    }
    
    @Ignore
    public static long getUnsigned(byte value) {
        return 0xff&value;
    }

    @Transient
    public long getSigned() {
        return value;
    }
    
    @Ignore
    public static long getSigned(byte value) {
        return value;
    }
    
    @Override
    public boolean equals(@Name("that") java.lang.Object obj) {
        if (obj instanceof Byte) {
            return value==((Byte) obj).value;
        }
        else {
            return false;
        }
    }
    
    @Ignore
    public static boolean equals(byte value, java.lang.Object obj) {
        if (obj instanceof Byte) {
            return value==((Byte) obj).value;
        }
        else {
            return false;
        }
    }
    
    @Override
    @Transient
    public Byte getPredecessor() {
        return new Byte((byte) (value-1));
    }
    
    @Ignore
    public static byte getPredecessor(byte value) {
        return (byte) (value-1);
    }
    
    @Override
    @Transient
    public Byte getSuccessor() {
        return new Byte((byte) (value+1));
    }
    
    @Ignore
    public static byte getSuccessor(byte value) {
        return (byte) (value+1);
    }
    
    @Override
    @Transient
    public int hashCode() {
        return value;
    }
    
    @Ignore
    public static int hashCode(byte value) {
        return value;
    }
    
    @Override
    @Transient
    public java.lang.String toString() {
        return Integer.toString(0xff&value);
    }
    
    @Ignore
    public static java.lang.String toString(byte value) {
        return Integer.toString(0xff&value);
    }

    @Override
    public Byte neighbour(@Name("offset") long offset) {
        return new Byte(((byte) (value + offset)));
    }
    
    @Ignore
    public static byte neighbour(byte value, long offset) {
        return (byte) (value + offset);
    }

    @Override
    public long offset(@Name("other") Byte other) {
        return ((byte) (value - other.value)) & 0xff;
    }

    @Ignore
    public static long offset(byte value, byte other) {
        return ((byte) (value - other)) & 0xff;
    }

    @Override
    public long offsetSign(@Name("other") Byte other) {
        return value==other.value ? 0 : 1;
    }

    @Ignore
    public static long offsetSign(byte value, byte other) {
        return value==other ? 0 : 1;
    }
    
    @Ignore
    public static Byte valueOf(java.lang.String string) {
        return instance(java.lang.Byte.parseByte(string));
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy