Package javax.vecmath

Class Tuple4b

java.lang.Object
javax.vecmath.Tuple4b
All Implemented Interfaces:
java.io.Serializable, java.lang.Cloneable
Direct Known Subclasses:
Color4b

public abstract class Tuple4b
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
See Also:
Serialized Form
  • Field Summary

    Fields
    Modifier and Type Field Description
    byte w  
    byte x  
    byte y  
    byte z  
  • Constructor Summary

    Constructors
    Constructor Description
    Tuple4b()  
    Tuple4b​(byte[] byteArray)  
    Tuple4b​(byte byte1, byte byte2, byte byte3, byte byte4)  
    Tuple4b​(Tuple4b tuple4b)  
  • Method Summary

    Modifier and Type Method Description
    java.lang.Object clone()  
    boolean equals​(java.lang.Object object)  
    boolean equals​(Tuple4b tuple4b)  
    void get​(byte[] byteArray)  
    void get​(Tuple4b tuple4b)  
    byte getW()  
    byte getX()  
    byte getY()  
    byte getZ()  
    int hashCode()  
    void set​(byte[] byteArray)  
    void set​(Tuple4b tuple4b)  
    void setW​(byte byte1)  
    void setX​(byte byte1)  
    void setY​(byte byte1)  
    void setZ​(byte byte1)  
    java.lang.String toString()  

    Methods inherited from class java.lang.Object

    finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • x

      public byte x
    • y

      public byte y
    • z

      public byte z
    • w

      public byte w
  • Constructor Details

    • Tuple4b

      public Tuple4b​(byte byte1, byte byte2, byte byte3, byte byte4)
    • Tuple4b

      public Tuple4b​(byte[] byteArray)
    • Tuple4b

      public Tuple4b​(Tuple4b tuple4b)
    • Tuple4b

      public Tuple4b()
  • Method Details

    • toString

      public java.lang.String toString()
      Overrides:
      toString in class java.lang.Object
    • get

      public final void get​(byte[] byteArray)
    • get

      public final void get​(Tuple4b tuple4b)
    • set

      public final void set​(Tuple4b tuple4b)
    • set

      public final void set​(byte[] byteArray)
    • equals

      public boolean equals​(Tuple4b tuple4b)
    • equals

      public boolean equals​(java.lang.Object object)
      Overrides:
      equals in class java.lang.Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class java.lang.Object
    • clone

      public java.lang.Object clone()
      Overrides:
      clone in class java.lang.Object
    • getX

      public final byte getX()
    • setX

      public final void setX​(byte byte1)
    • getY

      public final byte getY()
    • setY

      public final void setY​(byte byte1)
    • getZ

      public final byte getZ()
    • setZ

      public final void setZ​(byte byte1)
    • getW

      public final byte getW()
    • setW

      public final void setW​(byte byte1)