add --shared
[pylucene.git] / lucene-java-3.4.0 / lucene / src / test-framework / org / apache / lucene / util / ThreeLongs.java
1 package org.apache.lucene.util;
2
3 /**
4  * Licensed to the Apache Software Foundation (ASF) under one or more
5  * contributor license agreements. See the NOTICE file distributed with
6  * this work for additional information regarding copyright ownership.
7  * The ASF licenses this file to You under the Apache License, Version 2.0
8  * (the "License"); you may not use this file except in compliance with
9  * the License. You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19
20 /** helper class for a random seed that is really 3 random seeds:
21  *  <ol>
22  *   <li>The test class's random seed: this is what the test sees in its beforeClass methods
23  *   <li>The test method's random seed: this is what the test method sees starting in its befores
24  *   <li>The test runner's random seed (controls the shuffling of test methods)
25  *  </ol>
26  */
27 class ThreeLongs {
28   public final long l1, l2, l3;
29   
30   public ThreeLongs(long l1, long l2, long l3) {
31     this.l1 = l1;
32     this.l2 = l2;
33     this.l3 = l3;
34   }
35   
36   @Override
37   public String toString() {
38     return Long.toString(l1, 16) + ":" + Long.toString(l2, 16) + ":" + Long.toString(l3, 16);
39   }
40   
41   public static ThreeLongs fromString(String s) {
42     String parts[] = s.split(":");
43     assert parts.length == 3;
44     return new ThreeLongs(Long.parseLong(parts[0], 16), Long.parseLong(parts[1], 16), Long.parseLong(parts[2], 16));
45   }
46 }