Uses of Class
java.lang.Integer
-
Packages that use Integer Package Description com.sun.nio.sctp A Java API for Stream Control Transport Protocol.java.awt.font Provides classes and interface relating to fonts.java.lang Provides classes that are fundamental to the design of the Java programming language.java.net Provides the classes for implementing networking applications.java.nio.channels Defines channels, which represent connections to entities that are capable of performing I/O operations, such as files and sockets; defines selectors, for multiplexed, non-blocking I/O operations.java.sql Provides the API for accessing and processing data stored in a data source (usually a relational database) using the Java™ programming language.java.util Contains the collections framework, some internationalization support classes, a service loader, properties, random number generation, string parsing and scanning classes, base64 encoding and decoding, a bit array, and several miscellaneous utility classes.java.util.spi Service provider classes for the classes in the java.util package.java.util.stream Classes to support functional-style operations on streams of elements, such as map-reduce transformations on collections.javafx.beans.binding Provides classes that create and operate on aBindingthat calculates a value that depends on one or more sources.javafx.beans.property The packagejavafx.beans.propertydefines read-only properties and writable properties, plus a number of implementations.javafx.css Provides API for making properties styleable via CSS and for supporting pseudo-class state.javafx.scene.control The JavaFX User Interface Controls (UI Controls or just Controls) are specialized Nodes in the JavaFX Scenegraph especially suited for reuse in many different application contexts.javafx.scene.control.cell Thejavafx.scene.control.cellpackage is where all cell-related classes are located, other than the core classes such asCell,IndexedCell,ListCell,TreeCell, andTableCell.javafx.scene.layout Provides classes to support user interface layout.javafx.util.converter This package is for standard string converters for JavaFX.javax.imageio.plugins.tiff Public classes used by the built-in TIFF plug-ins.javax.management Provides the core classes for the Java Management Extensions.javax.management.openmbean Provides the open data types and Open MBean descriptor classes.javax.management.relation Provides the definition of the Relation Service.javax.management.remote Interfaces for remote access to JMX MBean servers.javax.management.remote.rmi The RMI connector is a connector for the JMX Remote API that uses RMI to transmit client requests to a remote MBean server.javax.management.timer Provides the definition of the Timer MBean.javax.script The scripting API consists of interfaces and classes that define Java™ Scripting Engines and provides a framework for their use in Java applications.javax.swing Provides a set of "lightweight" (all-Java language) components that, to the maximum degree possible, work the same on all platforms.javax.swing.plaf.basic Provides user interface objects built according to the Basic look and feel.jdk.jshell Provides interfaces for creating tools, such as a Read-Eval-Print Loop (REPL), which interactively evaluate "snippets" of Java programming language code. -
-
Uses of Integer in com.sun.nio.sctp
Fields in com.sun.nio.sctp with type parameters of type Integer Modifier and Type Field Description static SctpSocketOption<Integer>SctpStandardSocketOptions. SCTP_FRAGMENT_INTERLEAVEFragmented interleave controls how the presentation of messages occur for the message receiver.static SctpSocketOption<Integer>SctpStandardSocketOptions. SO_LINGERLinger on close if data is present.static SctpSocketOption<Integer>SctpStandardSocketOptions. SO_RCVBUFThe size of the socket receive buffer.static SctpSocketOption<Integer>SctpStandardSocketOptions. SO_SNDBUFThe size of the socket send buffer. -
Uses of Integer in java.awt.font
Fields in java.awt.font declared as Integer Modifier and Type Field Description static IntegerTextAttribute. KERNING_ONRequest standard kerning.static IntegerTextAttribute. LIGATURES_ONRequest standard optional ligatures.static IntegerTextAttribute. SUPERSCRIPT_SUBStandard subscript.static IntegerTextAttribute. SUPERSCRIPT_SUPERStandard superscript.static IntegerTextAttribute. UNDERLINE_LOW_DASHEDSingle pixel dashed low underline.static IntegerTextAttribute. UNDERLINE_LOW_DOTTEDSingle pixel dotted low underline.static IntegerTextAttribute. UNDERLINE_LOW_GRAYDouble pixel gray low underline.static IntegerTextAttribute. UNDERLINE_LOW_ONE_PIXELSingle pixel solid low underline.static IntegerTextAttribute. UNDERLINE_LOW_TWO_PIXELDouble pixel solid low underline.static IntegerTextAttribute. UNDERLINE_ONStandard underline. -
Uses of Integer in java.lang
Fields in java.lang with type parameters of type Integer Modifier and Type Field Description static Class<Integer>Integer. TYPETheClassinstance representing the primitive typeint.Methods in java.lang that return Integer Modifier and Type Method Description static IntegerInteger. decode(String nm)Decodes aStringinto anInteger.static IntegerInteger. getInteger(String nm)Determines the integer value of the system property with the specified name.static IntegerInteger. getInteger(String nm, int val)Determines the integer value of the system property with the specified name.static IntegerInteger. getInteger(String nm, Integer val)Returns the integer value of the system property with the specified name.static IntegerInteger. valueOf(int i)Returns anIntegerinstance representing the specifiedintvalue.static IntegerInteger. valueOf(String s)Returns anIntegerobject holding the value of the specifiedString.static IntegerInteger. valueOf(String s, int radix)Returns anIntegerobject holding the value extracted from the specifiedStringwhen parsed with the radix given by the second argument.Methods in java.lang that return types with arguments of type Integer Modifier and Type Method Description Optional<Integer>Runtime.Version. build()Returns the build number.List<Integer>Runtime.Version. version()Returns an unmodifiableListof the integer numerals contained in the version number.Methods in java.lang with parameters of type Integer Modifier and Type Method Description intInteger. compareTo(Integer anotherInteger)Compares twoIntegerobjects numerically.static IntegerInteger. getInteger(String nm, Integer val)Returns the integer value of the system property with the specified name. -
Uses of Integer in java.net
Fields in java.net with type parameters of type Integer Modifier and Type Field Description static SocketOption<Integer>StandardSocketOptions. IP_MULTICAST_TTLThe time-to-live for Internet Protocol (IP) multicast datagrams.static SocketOption<Integer>StandardSocketOptions. IP_TOSThe Type of Service (ToS) octet in the Internet Protocol (IP) header.static SocketOption<Integer>StandardSocketOptions. SO_LINGERLinger on close if data is present.static SocketOption<Integer>StandardSocketOptions. SO_RCVBUFThe size of the socket receive buffer.static SocketOption<Integer>StandardSocketOptions. SO_SNDBUFThe size of the socket send buffer. -
Uses of Integer in java.nio.channels
Methods in java.nio.channels that return types with arguments of type Integer Modifier and Type Method Description Future<Integer>AsynchronousByteChannel. read(ByteBuffer dst)Reads a sequence of bytes from this channel into the given buffer.abstract Future<Integer>AsynchronousFileChannel. read(ByteBuffer dst, long position)Reads a sequence of bytes from this channel into the given buffer, starting at the given file position.abstract Future<Integer>AsynchronousSocketChannel. read(ByteBuffer dst)Future<Integer>AsynchronousByteChannel. write(ByteBuffer src)Writes a sequence of bytes to this channel from the given buffer.abstract Future<Integer>AsynchronousFileChannel. write(ByteBuffer src, long position)Writes a sequence of bytes to this channel from the given buffer, starting at the given file position.abstract Future<Integer>AsynchronousSocketChannel. write(ByteBuffer src)Method parameters in java.nio.channels with type arguments of type Integer Modifier and Type Method Description <A> voidAsynchronousByteChannel. read(ByteBuffer dst, A attachment, CompletionHandler<Integer,? super A> handler)Reads a sequence of bytes from this channel into the given buffer.abstract <A> voidAsynchronousFileChannel. read(ByteBuffer dst, long position, A attachment, CompletionHandler<Integer,? super A> handler)Reads a sequence of bytes from this channel into the given buffer, starting at the given file position.abstract <A> voidAsynchronousSocketChannel. read(ByteBuffer dst, long timeout, TimeUnit unit, A attachment, CompletionHandler<Integer,? super A> handler)Reads a sequence of bytes from this channel into the given buffer.<A> voidAsynchronousSocketChannel. read(ByteBuffer dst, A attachment, CompletionHandler<Integer,? super A> handler)<A> voidAsynchronousByteChannel. write(ByteBuffer src, A attachment, CompletionHandler<Integer,? super A> handler)Writes a sequence of bytes to this channel from the given buffer.abstract <A> voidAsynchronousFileChannel. write(ByteBuffer src, long position, A attachment, CompletionHandler<Integer,? super A> handler)Writes a sequence of bytes to this channel from the given buffer, starting at the given file position.abstract <A> voidAsynchronousSocketChannel. write(ByteBuffer src, long timeout, TimeUnit unit, A attachment, CompletionHandler<Integer,? super A> handler)Writes a sequence of bytes to this channel from the given buffer.<A> voidAsynchronousSocketChannel. write(ByteBuffer src, A attachment, CompletionHandler<Integer,? super A> handler) -
Uses of Integer in java.sql
Methods in java.sql that return Integer Modifier and Type Method Description IntegerJDBCType. getVendorTypeNumber()Returns the vendor specific type number for the data type.IntegerSQLType. getVendorTypeNumber()Returns the vendor specific type number for the data type. -
Uses of Integer in java.util
Methods in java.util that return Integer Modifier and Type Method Description default IntegerPrimitiveIterator.OfInt. next()Returns the next element in the iteration.Methods in java.util that return types with arguments of type Integer Modifier and Type Method Description Map<String,Integer>Calendar. getDisplayNames(int field, int style, Locale locale)Returns aMapcontaining all names of the calendarfieldin the givenstyleandlocaleand their corresponding field values.Method parameters in java.util with type arguments of type Integer Modifier and Type Method Description default voidPrimitiveIterator.OfInt. forEachRemaining(Consumer<? super Integer> action)Performs the given action for each remaining element until all elements have been processed or the action throws an exception.default voidSpliterator.OfInt. forEachRemaining(Consumer<? super Integer> action)Performs the given action for each remaining element, sequentially in the current thread, until all elements have been processed or the action throws an exception.default booleanSpliterator.OfInt. tryAdvance(Consumer<? super Integer> action)If a remaining element exists, performs the given action on it, returningtrue; else returnsfalse. -
Uses of Integer in java.util.spi
Methods in java.util.spi that return types with arguments of type Integer Modifier and Type Method Description abstract Map<String,Integer>CalendarNameProvider. getDisplayNames(String calendarType, int field, int style, Locale locale)Returns aMapcontaining all string representations (display names) of theCalendarfieldin the givenstyleandlocaleand their corresponding field values. -
Uses of Integer in java.util.stream
Methods in java.util.stream that return types with arguments of type Integer Modifier and Type Method Description Stream<Integer>IntStream. boxed()Returns aStreamconsisting of the elements of this stream, each boxed to anInteger.static <T> Collector<T,?,Integer>Collectors. summingInt(ToIntFunction<? super T> mapper)Returns aCollectorthat produces the sum of a integer-valued function applied to the input elements. -
Uses of Integer in javafx.beans.binding
Methods in javafx.beans.binding that return Integer Modifier and Type Method Description IntegerIntegerExpression. getValue()Methods in javafx.beans.binding that return types with arguments of type Integer Modifier and Type Method Description ObjectExpression<Integer>IntegerExpression. asObject()Creates anObjectExpressionthat holds the value of thisIntegerExpression.Method parameters in javafx.beans.binding with type arguments of type Integer Modifier and Type Method Description static IntegerBindingBindings. createIntegerBinding(Callable<Integer> func, Observable... dependencies)Helper function to create a customIntegerBinding. -
Uses of Integer in javafx.beans.property
Methods in javafx.beans.property that return types with arguments of type Integer Modifier and Type Method Description ObjectProperty<Integer>IntegerProperty. asObject()Creates anObjectPropertythat bidirectionally bound to thisIntegerProperty.ReadOnlyObjectProperty<Integer>ReadOnlyIntegerProperty. asObject()Creates aReadOnlyObjectPropertythat holds the value of thisReadOnlyIntegerProperty.Method parameters in javafx.beans.property with type arguments of type Integer Modifier and Type Method Description static IntegerPropertyIntegerProperty. integerProperty(Property<Integer> property)Returns aIntegerPropertythat wraps aPropertyand is bidirectionally bound to it. -
Uses of Integer in javafx.css
Constructors in javafx.css with parameters of type Integer Constructor Description SimpleStyleableIntegerProperty(CssMetaData<? extends Styleable,Number> cssMetaData, Integer initialValue)The constructor of theSimpleStyleableIntegerProperty.SimpleStyleableIntegerProperty(CssMetaData<? extends Styleable,Number> cssMetaData, Object bean, String name, Integer initialValue)The constructor of theSimpleStyleableIntegerProperty. -
Uses of Integer in javafx.scene.control
Methods in javafx.scene.control that return types with arguments of type Integer Modifier and Type Method Description EventHandler<ScrollToEvent<Integer>>ListView. getOnScrollTo()Gets the value of the property onScrollTo.EventHandler<ScrollToEvent<Integer>>TableView. getOnScrollTo()Gets the value of the property onScrollTo.EventHandler<ScrollToEvent<Integer>>TreeTableView. getOnScrollTo()Gets the value of the property onScrollTo.EventHandler<ScrollToEvent<Integer>>TreeView. getOnScrollTo()Gets the value of the property onScrollTo.Callback<Integer,Node>Pagination. getPageFactory()Returns the page factory callback function.abstract ObservableList<Integer>MultipleSelectionModel. getSelectedIndices()Returns a read-only ObservableList of all selected indices.ObjectProperty<EventHandler<ScrollToEvent<Integer>>>ListView. onScrollToProperty()Called when there's a request to scroll an index into view usingListView.scrollTo(int)orListView.scrollTo(Object)ObjectProperty<EventHandler<ScrollToEvent<Integer>>>TableView. onScrollToProperty()Called when there's a request to scroll an index into view usingTableView.scrollTo(int)orTableView.scrollTo(Object)ObjectProperty<EventHandler<ScrollToEvent<Integer>>>TreeTableView. onScrollToProperty()Called when there's a request to scroll an index into view usingTreeTableView.scrollTo(int)ObjectProperty<EventHandler<ScrollToEvent<Integer>>>TreeView. onScrollToProperty()Called when there's a request to scroll an index into view usingTreeView.scrollTo(int)ObjectProperty<Callback<Integer,Node>>Pagination. pageFactoryProperty()The pageFactory callback function that is called when a page has been selected by the application or the user.static EventType<ScrollToEvent<Integer>>ScrollToEvent. scrollToTopIndex()This event occurs if the user requests scrolling a given index into view.Method parameters in javafx.scene.control with type arguments of type Integer Modifier and Type Method Description voidListView. setOnScrollTo(EventHandler<ScrollToEvent<Integer>> value)Sets the value of the property onScrollTo.voidTableView. setOnScrollTo(EventHandler<ScrollToEvent<Integer>> value)Sets the value of the property onScrollTo.voidTreeTableView. setOnScrollTo(EventHandler<ScrollToEvent<Integer>> value)Sets the value of the property onScrollTo.voidTreeView. setOnScrollTo(EventHandler<ScrollToEvent<Integer>> value)Sets the value of the property onScrollTo.voidPagination. setPageFactory(Callback<Integer,Node> value)Sets the page factory callback function. -
Uses of Integer in javafx.scene.control.cell
Methods in javafx.scene.control.cell that return types with arguments of type Integer Modifier and Type Method Description Callback<Integer,ObservableValue<Boolean>>CheckBoxTableCell. getSelectedStateCallback()Returns theCallbackthat is bound to by the CheckBox shown on screen.Callback<Integer,ObservableValue<Boolean>>CheckBoxTreeTableCell. getSelectedStateCallback()Returns theCallbackthat is bound to by the CheckBox shown on screen.ObjectProperty<Callback<Integer,ObservableValue<Boolean>>>CheckBoxTableCell. selectedStateCallbackProperty()Property representing theCallbackthat is bound to by the CheckBox shown on screen.ObjectProperty<Callback<Integer,ObservableValue<Boolean>>>CheckBoxTreeTableCell. selectedStateCallbackProperty()Property representing theCallbackthat is bound to by the CheckBox shown on screen.Method parameters in javafx.scene.control.cell with type arguments of type Integer Modifier and Type Method Description static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>>CheckBoxTableCell. forTableColumn(Callback<Integer,ObservableValue<Boolean>> getSelectedProperty)Creates a cell factory for use in aTableColumncell factory.static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>>CheckBoxTableCell. forTableColumn(Callback<Integer,ObservableValue<Boolean>> getSelectedProperty, boolean showLabel)Creates a cell factory for use in aTableColumncell factory.static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>>CheckBoxTableCell. forTableColumn(Callback<Integer,ObservableValue<Boolean>> getSelectedProperty, StringConverter<T> converter)Creates a cell factory for use in aTableColumncell factory.static <S,T> Callback<TreeTableColumn<S,T>,TreeTableCell<S,T>>CheckBoxTreeTableCell. forTreeTableColumn(Callback<Integer,ObservableValue<Boolean>> getSelectedProperty)Creates a cell factory for use in aTreeTableColumncell factory.static <S,T> Callback<TreeTableColumn<S,T>,TreeTableCell<S,T>>CheckBoxTreeTableCell. forTreeTableColumn(Callback<Integer,ObservableValue<Boolean>> getSelectedProperty, boolean showLabel)Creates a cell factory for use in aTreeTableColumncell factory.static <S,T> Callback<TreeTableColumn<S,T>,TreeTableCell<S,T>>CheckBoxTreeTableCell. forTreeTableColumn(Callback<Integer,ObservableValue<Boolean>> getSelectedProperty, StringConverter<T> converter)Creates a cell factory for use in aTreeTableColumncell factory.voidCheckBoxTableCell. setSelectedStateCallback(Callback<Integer,ObservableValue<Boolean>> value)Sets theCallbackthat is bound to by the CheckBox shown on screen.voidCheckBoxTreeTableCell. setSelectedStateCallback(Callback<Integer,ObservableValue<Boolean>> value)Sets theCallbackthat is bound to by the CheckBox shown on screen.Constructor parameters in javafx.scene.control.cell with type arguments of type Integer Constructor Description CheckBoxTableCell(Callback<Integer,ObservableValue<Boolean>> getSelectedProperty)Creates a default CheckBoxTableCell with a customCallbackto retrieve an ObservableValue for a given cell index.CheckBoxTableCell(Callback<Integer,ObservableValue<Boolean>> getSelectedProperty, StringConverter<T> converter)Creates a CheckBoxTableCell with a custom string converter.CheckBoxTreeTableCell(Callback<Integer,ObservableValue<Boolean>> getSelectedProperty)Creates a default CheckBoxTreeTableCell with a customCallbackto retrieve an ObservableValue for a given cell index.CheckBoxTreeTableCell(Callback<Integer,ObservableValue<Boolean>> getSelectedProperty, StringConverter<T> converter)Creates a CheckBoxTreeTableCell with a custom string converter. -
Uses of Integer in javafx.scene.layout
Methods in javafx.scene.layout that return Integer Modifier and Type Method Description static IntegerGridPane. getColumnIndex(Node child)Returns the child's column index constraint if set.static IntegerGridPane. getColumnSpan(Node child)Returns the child's column-span constraint if set.static IntegerGridPane. getRowIndex(Node child)Returns the child's row index constraint if set.static IntegerGridPane. getRowSpan(Node child)Returns the child's row-span constraint if set.Methods in javafx.scene.layout with parameters of type Integer Modifier and Type Method Description static voidGridPane. setColumnIndex(Node child, Integer value)Sets the column index for the child when contained by a gridpane so that it will be positioned starting in that column of the gridpane.static voidGridPane. setColumnSpan(Node child, Integer value)Sets the column span for the child when contained by a gridpane so that it will span that number of columns horizontally.static voidGridPane. setRowIndex(Node child, Integer value)Sets the row index for the child when contained by a gridpane so that it will be positioned starting in that row of the gridpane.static voidGridPane. setRowSpan(Node child, Integer value)Sets the row span for the child when contained by a gridpane so that it will span that number of rows vertically. -
Uses of Integer in javafx.util.converter
Methods in javafx.util.converter that return Integer Modifier and Type Method Description IntegerIntegerStringConverter. fromString(String value)Converts the string provided into an object defined by the specific converter.Methods in javafx.util.converter with parameters of type Integer Modifier and Type Method Description StringIntegerStringConverter. toString(Integer value)Converts the object provided into its string form. -
Uses of Integer in javax.imageio.plugins.tiff
Methods in javax.imageio.plugins.tiff that return types with arguments of type Integer Modifier and Type Method Description SortedSet<Integer>TIFFTagSet. getTagNumbers()Retrieves an unmodifiable numerically increasing set of tag numbers. -
Uses of Integer in javax.management
Methods in javax.management that return Integer Modifier and Type Method Description IntegerMBeanServer. getMBeanCount()Returns the number of MBeans registered in the MBean server.IntegerMBeanServerConnection. getMBeanCount()Returns the number of MBeans registered in the MBean server. -
Uses of Integer in javax.management.openmbean
Fields in javax.management.openmbean with type parameters of type Integer Modifier and Type Field Description static SimpleType<Integer>SimpleType. INTEGERTheSimpleTypeinstance describing values whose Java class name isjava.lang.Integer. -
Uses of Integer in javax.management.relation
Methods in javax.management.relation that return Integer Modifier and Type Method Description IntegerRelationService. checkRoleReading(String roleName, String relationTypeName)Checks if given Role can be read in a relation of the given type.IntegerRelationServiceMBean. checkRoleReading(String roleName, String relationTypeName)Checks if given Role can be read in a relation of the given type.IntegerRelationService. checkRoleWriting(Role role, String relationTypeName, Boolean initFlag)Checks if given Role can be set in a relation of given type.IntegerRelationServiceMBean. checkRoleWriting(Role role, String relationTypeName, Boolean initFlag)Checks if given Role can be set in a relation of given type.IntegerRelation. getRoleCardinality(String roleName)Returns the number of MBeans currently referenced in the given role.IntegerRelationService. getRoleCardinality(String relationId, String roleName)Retrieves the number of MBeans currently referenced in the given role.IntegerRelationServiceMBean. getRoleCardinality(String relationId, String roleName)Retrieves the number of MBeans currently referenced in the given role.IntegerRelationSupport. getRoleCardinality(String roleName)Returns the number of MBeans currently referenced in the given role. -
Uses of Integer in javax.management.remote
Methods in javax.management.remote that return Integer Modifier and Type Method Description IntegerTargetedNotification. getListenerID()The ID of the listener to which the notification is targeted.Constructors in javax.management.remote with parameters of type Integer Constructor Description TargetedNotification(Notification notification, Integer listenerID)Constructs aTargetedNotificationobject. -
Uses of Integer in javax.management.remote.rmi
Methods in javax.management.remote.rmi that return Integer Modifier and Type Method Description Integer[]RMIConnection. addNotificationListeners(ObjectName[] names, MarshalledObject[] filters, Subject[] delegationSubjects)Integer[]RMIConnectionImpl_Stub. addNotificationListeners(ObjectName[] $param_arrayOf_ObjectName_1, MarshalledObject[] $param_arrayOf_MarshalledObject_2, Subject[] $param_arrayOf_Subject_3)Integer[]RMIConnectionImpl. addNotificationListeners(ObjectName[] names, MarshalledObject[] filters, Subject[] delegationSubjects)IntegerRMIConnection. getMBeanCount(Subject delegationSubject)Handles the methodMBeanServerConnection.getMBeanCount().IntegerRMIConnectionImpl_Stub. getMBeanCount(Subject $param_Subject_1)IntegerRMIConnectionImpl. getMBeanCount(Subject delegationSubject)Methods in javax.management.remote.rmi with parameters of type Integer Modifier and Type Method Description voidRMIConnection. removeNotificationListeners(ObjectName name, Integer[] listenerIDs, Subject delegationSubject)voidRMIConnectionImpl_Stub. removeNotificationListeners(ObjectName $param_ObjectName_1, Integer[] $param_arrayOf_Integer_2, Subject $param_Subject_3)voidRMIConnectionImpl. removeNotificationListeners(ObjectName name, Integer[] listenerIDs, Subject delegationSubject) -
Uses of Integer in javax.management.timer
Methods in javax.management.timer that return Integer Modifier and Type Method Description IntegerTimer. addNotification(String type, String message, Object userData, Date date)Creates a new timer notification with the specifiedtype,messageanduserDataand inserts it into the list of notifications with a given date and a null period and number of occurrences.IntegerTimer. addNotification(String type, String message, Object userData, Date date, long period)Creates a new timer notification with the specifiedtype,messageanduserDataand inserts it into the list of notifications with a given date and period and a null number of occurrences.IntegerTimer. addNotification(String type, String message, Object userData, Date date, long period, long nbOccurences)Creates a new timer notification with the specifiedtype,messageanduserDataand inserts it into the list of notifications with a given date, period and number of occurrences.IntegerTimer. addNotification(String type, String message, Object userData, Date date, long period, long nbOccurences, boolean fixedRate)Creates a new timer notification with the specifiedtype,messageanduserDataand inserts it into the list of notifications with a given date, period and number of occurrences.IntegerTimerMBean. addNotification(String type, String message, Object userData, Date date)Creates a new timer notification with the specifiedtype,messageanduserDataand inserts it into the list of notifications with a given date and a null period and number of occurrences.IntegerTimerMBean. addNotification(String type, String message, Object userData, Date date, long period)Creates a new timer notification with the specifiedtype,messageanduserDataand inserts it into the list of notifications with a given date and period and a null number of occurrences.IntegerTimerMBean. addNotification(String type, String message, Object userData, Date date, long period, long nbOccurences)Creates a new timer notification with the specifiedtype,messageanduserDataand inserts it into the list of notifications with a given date, period and number of occurrences.IntegerTimerMBean. addNotification(String type, String message, Object userData, Date date, long period, long nbOccurences, boolean fixedRate)Creates a new timer notification with the specifiedtype,messageanduserDataand inserts it into the list of notifications with a given date, period and number of occurrences.IntegerTimerNotification. getNotificationID()Gets the identifier of this timer notification.Methods in javax.management.timer that return types with arguments of type Integer Modifier and Type Method Description Vector<Integer>Timer. getAllNotificationIDs()Gets all timer notification identifiers registered into the list of notifications.Vector<Integer>TimerMBean. getAllNotificationIDs()Gets all timer notification identifiers registered into the list of notifications.Vector<Integer>Timer. getNotificationIDs(String type)Gets all the identifiers of timer notifications corresponding to the specified type.Vector<Integer>TimerMBean. getNotificationIDs(String type)Gets all the identifiers of timer notifications corresponding to the specified type.Methods in javax.management.timer with parameters of type Integer Modifier and Type Method Description DateTimer. getDate(Integer id)Gets a copy of the date associated to a timer notification.DateTimerMBean. getDate(Integer id)Gets a copy of the date associated to a timer notification.BooleanTimer. getFixedRate(Integer id)Gets a copy of the flag indicating whether a periodic notification is executed at fixed-delay or at fixed-rate.BooleanTimerMBean. getFixedRate(Integer id)Gets a copy of the flag indicating whether a periodic notification is executed at fixed-delay or at fixed-rate.LongTimer. getNbOccurences(Integer id)Gets a copy of the remaining number of occurrences associated to a timer notification.LongTimerMBean. getNbOccurences(Integer id)Gets a copy of the remaining number of occurrences associated to a timer notification.StringTimer. getNotificationMessage(Integer id)Gets the timer notification detailed message corresponding to the specified identifier.StringTimerMBean. getNotificationMessage(Integer id)Gets the timer notification detailed message corresponding to the specified identifier.StringTimer. getNotificationType(Integer id)Gets the timer notification type corresponding to the specified identifier.StringTimerMBean. getNotificationType(Integer id)Gets the timer notification type corresponding to the specified identifier.ObjectTimer. getNotificationUserData(Integer id)Gets the timer notification user data object corresponding to the specified identifier.ObjectTimerMBean. getNotificationUserData(Integer id)Gets the timer notification user data object corresponding to the specified identifier.LongTimer. getPeriod(Integer id)Gets a copy of the period (in milliseconds) associated to a timer notification.LongTimerMBean. getPeriod(Integer id)Gets a copy of the period (in milliseconds) associated to a timer notification.voidTimer. removeNotification(Integer id)Removes the timer notification corresponding to the specified identifier from the list of notifications.voidTimerMBean. removeNotification(Integer id)Removes the timer notification corresponding to the specified identifier from the list of notifications.Constructors in javax.management.timer with parameters of type Integer Constructor Description TimerNotification(String type, Object source, long sequenceNumber, long timeStamp, String msg, Integer id)Creates a timer notification object. -
Uses of Integer in javax.script
Methods in javax.script that return types with arguments of type Integer Modifier and Type Method Description List<Integer>ScriptContext. getScopes()Returns immutableListof all the valid values for scope in the ScriptContext.List<Integer>SimpleScriptContext. getScopes()Returns immutableListof all the valid values for scope in the ScriptContext. -
Uses of Integer in javax.swing
Fields in javax.swing declared as Integer Modifier and Type Field Description static IntegerJLayeredPane. DEFAULT_LAYERConvenience object defining the Default layer.static IntegerJLayeredPane. DRAG_LAYERConvenience object defining the Drag layer.static IntegerJLayeredPane. FRAME_CONTENT_LAYERConvenience object defining the Frame Content layer.static IntegerJLayeredPane. MODAL_LAYERConvenience object defining the Modal layer.static IntegerJLayeredPane. PALETTE_LAYERConvenience object defining the Palette layer.static IntegerJLayeredPane. POPUP_LAYERConvenience object defining the Popup layer.Methods in javax.swing that return Integer Modifier and Type Method Description protected IntegerJLayeredPane. getObjectForLayer(int layer)Returns the Integer object associated with a specified layer.Methods in javax.swing that return types with arguments of type Integer Modifier and Type Method Description Hashtable<Integer,JComponent>JSlider. createStandardLabels(int increment)Creates aHashtableof numerical text labels, starting at the slider minimum, and using the increment specified.Hashtable<Integer,JComponent>JSlider. createStandardLabels(int increment, int start)Creates aHashtableof numerical text labels, starting at the starting point specified, and using the increment specified.protected Hashtable<Component,Integer>JLayeredPane. getComponentToLayer()Returns the hashtable that maps components to layers.Methods in javax.swing with parameters of type Integer Modifier and Type Method Description voidJInternalFrame. setLayer(Integer layer)Convenience method for setting the layer attribute of this component. -
Uses of Integer in javax.swing.plaf.basic
Methods in javax.swing.plaf.basic that return Integer Modifier and Type Method Description protected IntegerBasicSliderUI. getHighestValue()Returns the biggest value that has an entry in the label table.protected IntegerBasicSliderUI. getLowestValue()Returns the smallest value that has an entry in the label table. -
Uses of Integer in jdk.jshell
Method parameters in jdk.jshell with type arguments of type Integer Modifier and Type Method Description JShell.BuilderJShell.Builder. idGenerator(BiFunction<Snippet,Integer,String> generator)Sets the generator of identifying names for Snippets.
-