Uses of Class
java.lang.Long

Packages that use Long
Package Description
java.lang  
org.robovm.rt.annotation  
  • Uses of Long in java.lang

    Fields in java.lang with type parameters of type Long
    Modifier and Type Field Description
    static Class<Long> Long.TYPE
    The Class object that represents the primitive type long.
    Methods in java.lang that return Long
    Modifier and Type Method Description
    static Long Long.decode​(String string)
    Parses the specified string and returns a Long instance if the string can be decoded into a long value.
    static Long Long.getLong​(String string)
    Returns the Long value of the system property identified by string.
    static Long Long.getLong​(String string, long defaultValue)
    Returns the Long value of the system property identified by string.
    static Long Long.getLong​(String string, Long defaultValue)
    Returns the Long value of the system property identified by string.
    static Long Long.valueOf​(long v)
    Returns a Long instance for the specified long value.
    static Long Long.valueOf​(String string)
    Parses the specified string as a signed decimal long value.
    static Long Long.valueOf​(String string, int radix)
    Parses the specified string as a signed long value using the specified radix.
    Methods in java.lang with parameters of type Long
    Modifier and Type Method Description
    int Long.compareTo​(Long object)
    Compares this object to the specified long object to determine their relative order.
    static Long Long.getLong​(String string, Long defaultValue)
    Returns the Long value of the system property identified by string.
  • Uses of Long in org.robovm.rt.annotation

    Methods in org.robovm.rt.annotation that return Long
    Modifier and Type Method Description
    protected static Long Annotation.box​(long v)  
    Methods in org.robovm.rt.annotation with parameters of type Long
    Modifier and Type Method Description
    protected static long Annotation.unbox​(Long v)