blob: 6b5fa652fd8a5e598882abe41658fcd16b5d26c7 [file] [log] [blame]
Sho SHIMIZU91210a72015-04-29 12:54:28 -07001/*
2 * Copyright 2015 Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onosproject.net;
17
18import com.google.common.base.MoreObjects;
19
20/**
21 * Implementation of Lambda simply designated by an index number of wavelength.
22 */
23public class IndexedLambda implements Lambda {
24
Sho SHIMIZU2e7ac842015-05-05 15:45:38 -070025 private final long index;
Sho SHIMIZU91210a72015-04-29 12:54:28 -070026
27 /**
28 * Creates an instance representing the wavelength specified by the given index number.
Sho SHIMIZU4fea4fd2015-05-07 11:50:23 -070029 * It is recommended to use {@link Lambda#indexedLambda(long)} unless you want to use the
30 * concrete type, IndexedLambda, directly.
Sho SHIMIZU91210a72015-04-29 12:54:28 -070031 *
Sho SHIMIZU2e7ac842015-05-05 15:45:38 -070032 * @param index index number of wavelength
Sho SHIMIZU91210a72015-04-29 12:54:28 -070033 */
Sho SHIMIZU4fea4fd2015-05-07 11:50:23 -070034 public IndexedLambda(long index) {
Sho SHIMIZU2e7ac842015-05-05 15:45:38 -070035 this.index = index;
36 }
37
38 /**
39 * Returns the index number of lambda.
40 *
41 * @return the index number of lambda
42 */
43 public long index() {
44 return index;
Sho SHIMIZU91210a72015-04-29 12:54:28 -070045 }
46
47 @Override
48 public int hashCode() {
Sho SHIMIZUa5b5c3e2015-05-07 12:04:49 -070049 return Long.hashCode(index);
Sho SHIMIZU91210a72015-04-29 12:54:28 -070050 }
51
52 @Override
53 public boolean equals(Object obj) {
54 if (this == obj) {
55 return true;
56 }
57 if (!(obj instanceof IndexedLambda)) {
58 return false;
59 }
60
61 final IndexedLambda that = (IndexedLambda) obj;
Sho SHIMIZU2e7ac842015-05-05 15:45:38 -070062 return this.index == that.index;
Sho SHIMIZU91210a72015-04-29 12:54:28 -070063 }
64
65 @Override
66 public String toString() {
67 return MoreObjects.toStringHelper(this)
Sho SHIMIZU2e7ac842015-05-05 15:45:38 -070068 .add("lambda", index)
Sho SHIMIZU91210a72015-04-29 12:54:28 -070069 .toString();
70 }
71}