Class UniqueIdentifier


  • public class UniqueIdentifier
    extends java.lang.Object
    This class encapsulates the MS SQL2000 UniqueIdentifer data type.
    Version:
    $Id: UniqueIdentifier.java,v 1.4 2005-04-28 14:29:30 alin_sinpalean Exp $
    Author:
    Mike Hutchinson.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private byte[] bytes  
    • Constructor Summary

      Constructors 
      Constructor Description
      UniqueIdentifier​(byte[] id)
      Construct a unique identifier with the supplied byte array.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      byte[] getBytes()
      Retrieve the unique identifier as a byte array.
      java.lang.String toString()
      Retrieve the unique identifier as a formatted string.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • bytes

        private final byte[] bytes
    • Constructor Detail

      • UniqueIdentifier

        public UniqueIdentifier​(byte[] id)
        Construct a unique identifier with the supplied byte array.
    • Method Detail

      • getBytes

        public byte[] getBytes()
        Retrieve the unique identifier as a byte array.
        Returns:
        The unique identifier as a byte[].
      • toString

        public java.lang.String toString()
        Retrieve the unique identifier as a formatted string.

        Format is NNNNNNNN-NNNN-NNNN-NNNN-NNNNNNNNNNNN.

        Overrides:
        toString in class java.lang.Object
        Returns:
        The uniqueidentifier as a String.