~ubuntu-branches/ubuntu/trusty/pylucene/trusty

« back to all changes in this revision

Viewing changes to lucene-java-3.5.0/lucene/src/test-framework/java/org/apache/lucene/util/ThreeLongs.java

  • Committer: Package Import Robot
  • Author(s): Dmitry Nezhevenko
  • Date: 2012-04-23 16:43:55 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20120423164355-grqtepnwtecdjfk2
Tags: 3.5.0-1
* New maintainer (closes: 670179)
* New upstream release
* Switch to dpkg-source 3.0 (quilt) format
* Switch to machine-readable debian/copyright
* Bump debian/compat to 8, drop debian/pycompat
* Switch from cdbs to dh
* Add watch file
* Build for all supported versions of python2 (closes: 581198, 632240)
* Rename binary package to python-lucene (closes: 581197)
* Add -dbg package

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
}