All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.toshiba.mwcloud.gs.TimeUnit Maven / Gradle / Ivy

The newest version!
/*
   Copyright (c) 2017 TOSHIBA Digital Solutions Corporation

   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 com.toshiba.mwcloud.gs;

/**
 * Represents the time unit(s) used in TimeSeries data operation.
 */
public enum TimeUnit {

	/**
	 * Indicates the time is in years.
	 */
	YEAR,

	/**
	 * Indicates the time is in months.
	 */
	MONTH,

	/**
	 * Indicates the time is in days.
	 */
	DAY,

	/**
	 * Indicates the time is in hours.
	 */
	HOUR,

	/**
	 * Indicates the time is in minutes.
	 */
	MINUTE,

	/**
	 * Indicates the time is in seconds.
	 */
	SECOND,

	/**
	 * Indicates the time is in milliseconds.
	 */
	MILLISECOND,

	/**
	 * Indicates the time is in microseconds.
	 * @since 5.3
	 */
	MICROSECOND,

	/**
	 * Indicates the time is in nanoseconds.
	 * @since 5.3
	 */
	NANOSECOND

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy