Package com.ngt.jopenmetaverse.shared.types

Examples of com.ngt.jopenmetaverse.shared.types.UUID.GetBytes()


  @Test
  public void UUIDs()
  {
    // Creation
    UUID a = new UUID();
    byte[] bytes = a.GetBytes();
    for (int i = 0; i < 16; i++)
      Assert.assertTrue(bytes[i] == 0x00);

    // Comparison
    a = new UUID(new byte[] { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A,
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.