Java Float to single2short(float f)

Here you can find the source of single2short(float f)

Description

Converts a Single value to a Short value.

License

Apache License

Parameter

Parameter Description
f Single value

Return

Short value

Declaration

public static short single2short(float f) 

Method Source Code

//package com.java2s;
/*/*from w w w. ja v a 2  s .  c  o  m*/
 * Copyright 2009 Google Inc.
 *
 * 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 {
    /**
     * Converts a Single value to a Short value.
     * 
     * @param f  Single value
     * @return  Short value
     */
    public static short single2short(float f) {
        return (short) (((long) f << 48) >> 48);
    }
}

Related

  1. floatToSemiPrecision(float f, byte abyte0[], int i)
  2. floatToSortableInt(float val)
  3. floatToSortableInt(float value)
  4. floatToTime(float aTimeDuration)
  5. single2short(float f)