Uses of Class
java.lang.Long
-
Packages that use Long 软件包 描述 java.lang 提供对Java编程语言设计至关重要的类。java.nio.channels 定义通道,其表示与能够执行I / O操作的实体的连接,例如文件和套接字; 定义选择器,用于多路复用,非阻塞I / O操作。java.time.chrono 除默认ISO之外的日历系统的通用API。java.time.format 提供打印和解析日期和时间的类。java.time.temporal 使用字段和单位访问日期和时间,以及日期时间调整器。java.util 包含集合框架,一些国际化支持类,一个服务加载器,属性,随机数生成,字符串解析和扫描类,base64编码和解码,一个位数组和几个其他实用程序类。java.util.stream 支持元素流功能性操作的类,例如集合上的map-reduce转换。javafx.beans.binding 提供在Binding
上创建和操作的类,用于计算取决于一个或多个来源的值。javafx.beans.property 程序包javafx.beans.property
定义只读属性和可写属性,以及许多实现。javafx.css 提供API,通过CSS使属性变得风格,并支持伪类状态。javafx.util.converter 此包用于JavaFX的标准字符串转换器。javax.management.openmbean 提供打开的数据类型和Open MBean描述符类。javax.management.timer 提供定时器MBean的定义。 -
-
Uses of Long in java.lang
Fields in java.lang with type parameters of type Long Modifier and Type Field 描述 static Class<Long>
Long. TYPE
Class
表示原始类型long
实例。Methods in java.lang that return Long Modifier and Type 方法 描述 static Long
Long. decode(String nm)
将String
解码为Long
。static Long
Long. getLong(String nm)
确定具有指定名称的系统属性的值为long
。static Long
Long. getLong(String nm, long val)
确定具有指定名称的系统属性的值为long
。static Long
Long. getLong(String nm, Long val)
返回具有指定名称的系统属性的long
值。static Long
Long. valueOf(long l)
返回一个表示long
值的Long
实例。static Long
Long. valueOf(String s)
返回一个Long
对象,保存指定的值为String
。static Long
Long. valueOf(String s, int radix)
返回一个Long
对象,该对象保存从指定的String
提取的值,并使用第二个参数给出的基数进行解析。Methods in java.lang with parameters of type Long Modifier and Type 方法 描述 int
Long. compareTo(Long anotherLong)
以数字方式比较两个Long
对象。static Long
Long. getLong(String nm, Long val)
返回具有指定名称的系统属性的long
值。 -
Uses of Long in java.nio.channels
Method parameters in java.nio.channels with type arguments of type Long Modifier and Type 方法 描述 abstract <A> void
AsynchronousSocketChannel. read(ByteBuffer[] dsts, int offset, int length, long timeout, TimeUnit unit, A attachment, CompletionHandler<Long,? super A> handler)
从该通道读取字节序列到给定缓冲区的子序列中。abstract <A> void
AsynchronousSocketChannel. write(ByteBuffer[] srcs, int offset, int length, long timeout, TimeUnit unit, A attachment, CompletionHandler<Long,? super A> handler)
从给定缓冲区的子序列将一个字节序列写入该通道。 -
Uses of Long in java.time.chrono
Method parameters in java.time.chrono with type arguments of type Long Modifier and Type 方法 描述 ChronoLocalDate
AbstractChronology. resolveDate(Map<TemporalField,Long> fieldValues, ResolverStyle resolverStyle)
解析解析中的ChronoField
值到一个日期。ChronoLocalDate
Chronology. resolveDate(Map<TemporalField,Long> fieldValues, ResolverStyle resolverStyle)
解析解析ChronoField
值到一个日期。HijrahDate
HijrahChronology. resolveDate(Map<TemporalField,Long> fieldValues, ResolverStyle resolverStyle)
LocalDate
IsoChronology. resolveDate(Map<TemporalField,Long> fieldValues, ResolverStyle resolverStyle)
解析解析中的日期为ChronoField
。JapaneseDate
JapaneseChronology. resolveDate(Map<TemporalField,Long> fieldValues, ResolverStyle resolverStyle)
MinguoDate
MinguoChronology. resolveDate(Map<TemporalField,Long> fieldValues, ResolverStyle resolverStyle)
ThaiBuddhistDate
ThaiBuddhistChronology. resolveDate(Map<TemporalField,Long> fieldValues, ResolverStyle resolverStyle)
-
Uses of Long in java.time.format
Method parameters in java.time.format with type arguments of type Long Modifier and Type 方法 描述 DateTimeFormatterBuilder
DateTimeFormatterBuilder. appendText(TemporalField field, Map<Long,String> textLookup)
使用指定的地图将日期时间字段的文本附加到格式化程序以提供文本。 -
Uses of Long in java.time.temporal
Method parameters in java.time.temporal with type arguments of type Long Modifier and Type 方法 描述 default TemporalAccessor
TemporalField. resolve(Map<TemporalField,Long> fieldValues, TemporalAccessor partialTemporal, ResolverStyle resolverStyle)
解决此字段以提供更简单的替代或日期。 -
Uses of Long in java.util
Methods in java.util that return Long Modifier and Type 方法 描述 default Long
PrimitiveIterator.OfLong. next()
返回迭代中的下一个元素。Method parameters in java.util with type arguments of type Long Modifier and Type 方法 描述 default void
PrimitiveIterator.OfLong. forEachRemaining(Consumer<? super Long> action)
对每个剩余元素执行给定的操作,直到所有元素都被处理或动作引发异常。default void
Spliterator.OfLong. forEachRemaining(Consumer<? super Long> action)
在当前线程中依次执行每个剩余元素的给定操作,直到所有元素都被处理或动作引发异常。default boolean
Spliterator.OfLong. tryAdvance(Consumer<? super Long> action)
如果剩余的元素存在,执行给定的操作,返回true
; 否则返回false
。 -
Uses of Long in java.util.stream
Methods in java.util.stream that return types with arguments of type Long Modifier and Type 方法 描述 Stream<Long>
LongStream. boxed()
返回一个由这个流的元素组成的Stream
,每个都包含一个Long
。static <T> Collector<T,?,Long>
Collectors. counting()
返回Collector
类型的接受元件T
计数输入元件的数量。static <T> Collector<T,?,Long>
Collectors. summingLong(ToLongFunction<? super T> mapper)
返回一个产生应用于输入元素的长值函数的和的Collector
。 -
Uses of Long in javafx.beans.binding
Methods in javafx.beans.binding that return Long Modifier and Type 方法 描述 Long
LongExpression. getValue()
Methods in javafx.beans.binding that return types with arguments of type Long Modifier and Type 方法 描述 ObjectExpression<Long>
LongExpression. asObject()
创建一个ObjectExpression
,其值为LongExpression
。Method parameters in javafx.beans.binding with type arguments of type Long Modifier and Type 方法 描述 static LongBinding
Bindings. createLongBinding(Callable<Long> func, Observable... dependencies)
助手功能创建自定义LongBinding
。 -
Uses of Long in javafx.beans.property
Methods in javafx.beans.property that return types with arguments of type Long Modifier and Type 方法 描述 ObjectProperty<Long>
LongProperty. asObject()
创建一个ObjectProperty
双向绑定到这个LongProperty
。ReadOnlyObjectProperty<Long>
ReadOnlyLongProperty. asObject()
创建一个ReadOnlyObjectProperty
,其值为ReadOnlyLongProperty
。Method parameters in javafx.beans.property with type arguments of type Long Modifier and Type 方法 描述 static LongProperty
LongProperty. longProperty(Property<Long> property)
返回一个LongProperty
,其中包含一个Property
并且双向绑定到它。 -
Uses of Long in javafx.css
Constructors in javafx.css with parameters of type Long Constructor 描述 SimpleStyleableLongProperty(CssMetaData<? extends Styleable,Number> cssMetaData, Long initialValue)
SimpleStyleableLongProperty
的构造SimpleStyleableLongProperty
。SimpleStyleableLongProperty(CssMetaData<? extends Styleable,Number> cssMetaData, Object bean, String name, Long initialValue)
SimpleStyleableLongProperty
的构造SimpleStyleableLongProperty
。 -
Uses of Long in javafx.util.converter
Methods in javafx.util.converter that return Long Modifier and Type 方法 描述 Long
LongStringConverter. fromString(String value)
将提供的字符串转换为由特定转换器定义的对象。Methods in javafx.util.converter with parameters of type Long Modifier and Type 方法 描述 String
LongStringConverter. toString(Long value)
将提供的对象转换为其字符串形式。 -
Uses of Long in javax.management.openmbean
Fields in javax.management.openmbean with type parameters of type Long Modifier and Type Field 描述 static SimpleType<Long>
SimpleType. LONG
描述Java类名称为java.lang.Long
值的SimpleType
实例。 -
Uses of Long in javax.management.timer
Methods in javax.management.timer that return Long Modifier and Type 方法 描述 Long
Timer. getNbOccurences(Integer id)
获取与定时器通知相关联的剩余发生次数的副本。Long
TimerMBean. getNbOccurences(Integer id)
获取与定时器通知相关联的剩余发生次数的副本。Long
Timer. getPeriod(Integer id)
获取与定时器通知相关联的周期(以毫秒为单位)的副本。Long
TimerMBean. getPeriod(Integer id)
获取与定时器通知相关联的周期(以毫秒为单位)的副本。
-