blob: 1fc0e40c94ce259215962af5c4dd0557c53f95fd [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.knox.gateway.shell.table;
import java.util.List;
class KnoxShellTableCell<T extends Comparable<T>> implements Comparable<KnoxShellTableCell<T>>{
int rowIndex;
int colIndex;
String header;
T value;
KnoxShellTableCell(List<String> headers, List<List<T>> rows, int colIndex, int rowIndex) {
this.rowIndex = rowIndex;
this.colIndex = colIndex;
if (!headers.isEmpty()) {
this.header = headers.get(colIndex);
}
if (!rows.isEmpty()) {
this.value = rows.get(rowIndex).get(colIndex);
}
}
KnoxShellTableCell(List<String> headers, List<List<T>> rows, String name, int rowIndex) {
this.rowIndex = rowIndex;
if (!headers.isEmpty()) {
this.header = name;
this.colIndex = headers.indexOf(name);
}
if (!rows.isEmpty()) {
this.value = rows.get(rowIndex).get(colIndex);
}
}
KnoxShellTableCell<T> value(T value) {
this.value = value;
return this;
}
KnoxShellTableCell<T> header(String name) {
this.header = name;
return this;
}
@Override
public String toString() {
return value.toString();
}
@Override
public int compareTo(KnoxShellTableCell<T> other) {
return value.compareTo(other.value);
}
}