Java Short Number Create toShort(int src)

Here you can find the source of toShort(int src)

Description

to Short

License

Apache License

Declaration

public static short toShort(int src) 

Method Source Code

//package com.java2s;
/*//w  w w. j a  va 2s.c  o  m
 *  Copyright (c) 2012-2014 RONDHUIT Co.,Ltd.
 *  
 *   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 {

    public static short toShort(int src) {
        return (short) (src & 0xFFFF);
    }
}

Related

  1. toShort(final byte[] b)
  2. toShort(final byte[] buffer, final int offset, final int length)
  3. toShort(final byte[] inputBytes, int offset)
  4. toShort(final String bitString)
  5. toShort(final String value)
  6. toShort(int unsignedShort)
  7. toShort(long l)
  8. toShort(long n)
  9. toShort(Number num)