28
28
29
29
/**
30
30
* Root factory class for constructing UUID generators.
31
- *
31
+ *
32
32
* @author tatu
33
- *
33
+ *
34
34
* @since 3.0
35
35
*/
36
36
public class Generators
@@ -133,8 +133,8 @@ public static TimeBasedEpochGenerator timeBasedEpochGenerator()
133
133
134
134
/**
135
135
* Factory method for constructing UUID generator that generates UUID using
136
- * version 7 (time+random based), using specified Ethernet address
137
- * as the location part of UUID .
136
+ * version 7 (Unix Epoch time+random based), using specified {@link Random}
137
+ * number generator .
138
138
* No additional external synchronization is used.
139
139
*/
140
140
public static TimeBasedEpochGenerator timeBasedEpochGenerator (Random random )
@@ -144,9 +144,9 @@ public static TimeBasedEpochGenerator timeBasedEpochGenerator(Random random)
144
144
145
145
/**
146
146
* Factory method for constructing UUID generator that generates UUID using
147
- * version 7 (time+random based), using specified Ethernet address
148
- * as the location part of UUID .
149
- * Timestamp to use is access using specified {@link UUIDClock}
147
+ * version 7 (Unix Epoch time+random based), using specified {@link Random}
148
+ * number generato .
149
+ * Timestamp to use is accessed using specified {@link UUIDClock}
150
150
*
151
151
* No additional external synchronization is used.
152
152
*
@@ -161,7 +161,7 @@ public static TimeBasedEpochGenerator timeBasedEpochGenerator(Random random,
161
161
// // Time+location-based generation
162
162
163
163
/**
164
- * Factory method for constructing UUID generator that generates UUID using variant 1
164
+ * Factory method for constructing UUID generator that generates UUID using version 1
165
165
* (time+location based). This method will use the ethernet address of the interface
166
166
* that routes to the default gateway, or if that cannot be found, then the address of
167
167
* an indeterminately selected non-loopback interface. For most simple and common
0 commit comments