blob: a65b578c2d4437fbf2e4a2da2ec21b1f09cf0794 [file] [log] [blame]
/*
* Copyright 2014-2016 Open Networking Laboratory
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.onosproject.drivers.bmv2.model;
import com.google.common.base.Objects;
import static com.google.common.base.MoreObjects.toStringHelper;
/**
* Representation of a table key.
*/
public final class Bmv2ModelTableKey {
private final String matchType;
private final Bmv2ModelField field;
/**
* Creates a new table key.
*
* @param matchType match type
* @param field field instance
*/
protected Bmv2ModelTableKey(String matchType, Bmv2ModelField field) {
this.matchType = matchType;
this.field = field;
}
/**
* Returns the match type of this key.
*
* @return a string value
* TODO returns enum of match type
*/
public String matchType() {
return matchType;
}
/**
* Returns the header field instance matched by this key.
*
* @return a header field value
*/
public Bmv2ModelField field() {
return field;
}
@Override
public int hashCode() {
return Objects.hashCode(matchType, field);
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
final Bmv2ModelTableKey other = (Bmv2ModelTableKey) obj;
return Objects.equal(this.matchType, other.matchType)
&& Objects.equal(this.field, other.field);
}
@Override
public String toString() {
return toStringHelper(this)
.add("matchType", matchType)
.add("field", field)
.toString();
}
}