Uses of Class
com.fasterxml.uuid.EthernetAddress

Packages that use EthernetAddress
com.fasterxml.uuid Package that contains core (non-optional) Java UUID Generator API classes. 
com.fasterxml.uuid.impl   
 

Uses of EthernetAddress in com.fasterxml.uuid
 

Methods in com.fasterxml.uuid that return EthernetAddress
static EthernetAddress EthernetAddress.constructMulticastAddress()
          Factory method that can be used to construct a random multicast address; to be used in cases where there is no "real" ethernet address to use.
static EthernetAddress EthernetAddress.constructMulticastAddress(Random rnd)
          Factory method that can be used to construct a random multicast address; to be used in cases where there is no "real" ethernet address to use.
static EthernetAddress EthernetAddress.fromInterface()
          Factory method that locates a network interface that has a suitable mac address (ethernet cards, and things that emulate one), and return that address.
static EthernetAddress EthernetAddress.valueOf(byte[] addr)
          Constructs a new EthernetAddress given the byte array that contains binary representation of the address.
static EthernetAddress EthernetAddress.valueOf(int[] addr)
          Constructs a new EthernetAddress given the byte array that contains binary representation of the address.
static EthernetAddress EthernetAddress.valueOf(long addr)
          Constructs a new EthernetAddress given the long int value (64-bit) representation of the ethernet address (of which 48 LSB contain the definition) Note that calling this method returns the same result as would using the matching constructor.
static EthernetAddress EthernetAddress.valueOf(String addrStr)
          Constructs a new EthernetAddress given a string representation of the ethernet address.
 

Methods in com.fasterxml.uuid with parameters of type EthernetAddress
 int EthernetAddress.compareTo(EthernetAddress other)
          Method that compares this EthernetAddress to one passed in as argument.
static TimeBasedGenerator Generators.timeBasedGenerator(EthernetAddress ethernetAddress)
          Factory method for constructing UUID generator that generates UUID using variant 1 (time+location based), using specified Ethernet address as the location part of UUID.
static TimeBasedGenerator Generators.timeBasedGenerator(EthernetAddress ethernetAddress, TimestampSynchronizer sync)
          Factory method for constructing UUID generator that generates UUID using variant 1 (time+location based), using specified Ethernet address as the location part of UUID, and specified synchronizer (which may add additional restrictions to guarantee system-wide uniqueness).
static TimeBasedGenerator Generators.timeBasedGenerator(EthernetAddress ethernetAddress, UUIDTimer timer)
          Factory method for constructing UUID generator that generates UUID using variant 1 (time+location based), using specified Ethernet address as the location part of UUID, and specified UUIDTimer instance (which includes embedded synchronizer that defines synchronization behavior).
 

Uses of EthernetAddress in com.fasterxml.uuid.impl
 

Fields in com.fasterxml.uuid.impl declared as EthernetAddress
protected  EthernetAddress TimeBasedGenerator._ethernetAddress
           
 

Methods in com.fasterxml.uuid.impl that return EthernetAddress
 EthernetAddress TimeBasedGenerator.getEthernetAddress()
           
 

Constructors in com.fasterxml.uuid.impl with parameters of type EthernetAddress
TimeBasedGenerator(EthernetAddress ethAddr, UUIDTimer timer)
           
 



Copyright © 2011 FasterXML.com. All Rights Reserved.