/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/**
* A typesafe enumeration for describing data scaling semantics
*
* @author Brian Doherty
* @since 1.5
*/
public class Scale {
private final double factor;
}
/**
* Scale representing a no scaling
*/
/**
* Scale representing a percent scaling
*/
/**
* Scale representing a kilo scaling
*/
/**
* Scale representing a mega scaling
*/
/**
* Scale representing a giga scaling
*/
/**
* Scale representing a tera scaling
*/
/**
* Scale representing a tera scaling
*/
/**
* Scale representing a pico scaling
*/
/**
* Scale representing a nano scaling
*/
/**
* Scale representing a micro scaling
*/
/**
* Scale representing a milli scaling
*/
/**
* Scale representing a picosecond scaling
*/
/**
* Scale representing a nanosecond scaling
*/
/**
* Scale representing a microsecond scaling
*/
/**
* Scale representing a millisecond scaling
*/
/**
* Scale representing a second scaling
*/
/**
* Scale representing a minutes scaling
*/
/**
* Scale representing a hours scaling
*/
/**
* Returns the scaling factor of this Scale object
*
* @return the scaling factor of this Scale object
*/
public double getFactor() {
return factor;
}
/**
* Returns the string representation of this Scale object.
* The string representation is the name of the Scale object.
*
* @return the string representation of this Scale object
*/
return name;
}
/**
* Maps a string to its corresponding Scale object.
*
* @param s a string to match against Scale objects.
* @return The Scale object matching the given string.
*/
}
/**
* Returns an enumeration of the keys for this enumerated type
*
* @param s an string to match against Scale objects.
* @return The Scale object matching the given string.
*/
}
}
}