Java floor floorTs(long timestamp, int aggregationWindow)

Here you can find the source of floorTs(long timestamp, int aggregationWindow)

Description

floor Ts

License

Apache License

Parameter

Parameter Description
timestamp a parameter
aggregationWindow a parameter

Declaration

public static int floorTs(long timestamp, int aggregationWindow) 

Method Source Code

//package com.java2s;
/**/*from  www.ja  v a2  s.  co m*/
 * Copyright 2016 Symantec 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.
 */

public class Main {
    /**
     * @param timestamp
     * @param aggregationWindow
     * @return
     */
    public static int floorTs(long timestamp, int aggregationWindow) {
        return (int) (timestamp / (1000 * aggregationWindow)) * aggregationWindow;
    }
}

Related

  1. floorSec(long valueMs)
  2. floorSqrt(long i)
  3. floorToLong(float pX)
  4. floorToNearestNumberDivisibleByFour(long number)
  5. floorToPowerofTwo(int i)
  6. floory(double a, double precision)