blob: 7e7503e60c0cfad6c15bb745c48b3ce9d6d4e26f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2008 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.test.internal.performance.data;
import java.util.Collection;
import java.util.Map;
import java.util.Set;
/**
* @since 3.1
*/
public class DataPoint {
private int fStep;
private Map fScalars;
public DataPoint(int step, Map values) {
fStep= step;
fScalars= values;
}
public int getStep() {
return fStep;
}
public Dim[] getDimensions() {
Set set= fScalars.keySet();
return (Dim[]) set.toArray(new Dim[set.size()]);
}
public Collection getDimensions2() {
return fScalars.keySet();
}
public boolean contains(Dim dimension) {
return fScalars.containsKey(dimension);
}
public Scalar[] getScalars() {
return (Scalar[]) fScalars.values().toArray(new Scalar[fScalars.size()]);
}
public Scalar getScalar(Dim dimension) {
return (Scalar) fScalars.get(dimension);
}
public String toString() {
return "DataPoint [step= " + fStep + ", #dimensions: " + fScalars.size() + "]"; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
}
}