Java Object to Long castLongtoUInt(long x)

Here you can find the source of castLongtoUInt(long x)

Description

cast Longto U Int

License

Open Source License

Declaration

public static int castLongtoUInt(long x) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static int castLongtoUInt(long x) {
        return (int) (x & 0x00000000ffffffffL);
    }//from   w ww .  j a v a2 s.co m
}

Related

  1. castLong(Object o)
  2. castLong(Object o)
  3. castLong(Object val)
  4. castLong2Int(long x)
  5. castToLong(final String uid)
  6. castToLong(Object object)
  7. castToLong(Object value)
  8. castToLong(Object value)