パッケージ | 説明 |
---|---|
java.awt.font |
フォント関連のクラスおよびインタフェースを提供します。
|
java.lang |
Java プログラム言語の設計にあたり基本的なクラスを提供します。
|
java.net |
ネットワークアプリケーションを実装するためのクラスを提供します。
|
java.nio.channels |
入出力操作を実行できるエンティティー (ファイル、ソケットなど) への接続を表すチャネルや、多重化された非ブロック入出力操作用のセレクタを定義します。
|
java.util |
コレクションフレームワーク、レガシーコレクションクラス、イベントモデル、日時機能、国際化、およびさまざまなユーティリティークラス (StringTokenizer、乱数ジェネレーター、およびビット配列)が含まれています。
|
javax.management |
Java Management Extensions のコアクラスを提供します。
|
javax.management.openmbean |
公開データ型と Open MBean 記述子クラスを提供します。
|
javax.management.relation |
関係サービスの定義を提供します。
|
javax.management.remote |
JMX MBean サーバーにリモートアクセスするためのインタフェースです。
|
javax.management.remote.rmi |
RMI コネクタは、RMI を使ってクライアント要求をリモート MBean サーバーへ転送する、JMX リモート API用のコネクタです。
|
javax.management.timer |
Timer MBean の定義を提供します。
|
javax.script |
スクリプト API は、Java TM スクリプトエンジンを定義するインタフェースとクラスで構成され、それらを Java アプリケーションで使用するためのフレームワークを提供します。
|
javax.swing |
すべてのプラットフォーム上で可能なかぎり同じように機能する「軽量」(Java 共通言語) コンポーネントのセットを提供します。
|
javax.swing.plaf.basic |
基本 Look & Feel に従って構築されたユーザーインタフェースオブジェクトを提供します。
|
修飾子と型 | フィールドと説明 |
---|---|
static Integer |
TextAttribute.KERNING_ON
標準のカーニングを要求します。
|
static Integer |
TextAttribute.LIGATURES_ON
標準のオプション合字を要求します。
|
static Integer |
TextAttribute.SUPERSCRIPT_SUB
標準の下付き文字です。
|
static Integer |
TextAttribute.SUPERSCRIPT_SUPER
標準の上付き文字です。
|
static Integer |
TextAttribute.UNDERLINE_LOW_DASHED
シングルピクセルの破線の下線です。
|
static Integer |
TextAttribute.UNDERLINE_LOW_DOTTED
シングルピクセルの点線の下線です。
|
static Integer |
TextAttribute.UNDERLINE_LOW_GRAY
ダブルピクセルのグレーの下線です。
|
static Integer |
TextAttribute.UNDERLINE_LOW_ONE_PIXEL
シングルピクセルの実線の下線です。
|
static Integer |
TextAttribute.UNDERLINE_LOW_TWO_PIXEL
ダブルピクセルの実線の下線です。
|
static Integer |
TextAttribute.UNDERLINE_ON
標準の下線です。
|
修飾子と型 | フィールドと説明 |
---|---|
static Class<Integer> |
Integer.TYPE
プリミティブ型
int を表す Class インスタンス |
修飾子と型 | メソッドと説明 |
---|---|
static Integer |
Integer.decode(String nm)
String を Integer にデコードします。 |
static Integer |
Integer.getInteger(String nm)
指定された名前のシステムプロパティーの整数値を判定します。
|
static Integer |
Integer.getInteger(String nm, int val)
指定された名前のシステムプロパティーの整数値を判定します。
|
static Integer |
Integer.getInteger(String nm, Integer val)
指定された名前のシステムプロパティーの整数値を返します。
|
static Integer |
Integer.valueOf(int i)
指定された
int 値を表す Integer インスタンスを返します。 |
static Integer |
Integer.valueOf(String s)
指定された
String の値を保持する Integer オブジェクトを返します。 |
static Integer |
Integer.valueOf(String s, int radix)
2 番目の引数で指定された基数を使用した構文解析時に、指定された
String から抽出された値を保持する Integer オブジェクトを返します。 |
修飾子と型 | メソッドと説明 |
---|---|
int |
Integer.compareTo(Integer anotherInteger)
2 つの
Integer オブジェクトを数値的に比較します。 |
static Integer |
Integer.getInteger(String nm, Integer val)
指定された名前のシステムプロパティーの整数値を返します。
|
修飾子と型 | フィールドと説明 |
---|---|
static SocketOption<Integer> |
StandardSocketOptions.IP_MULTICAST_TTL
IP (Internet Protocol) マルチキャストデータグラムの有効期間。
|
static SocketOption<Integer> |
StandardSocketOptions.IP_TOS
IP (Internet Protocol) ヘッダーのサービスタイプ (ToS)。
|
static SocketOption<Integer> |
StandardSocketOptions.SO_LINGER
閉じるときにデータが存在する場合は遅延します。
|
static SocketOption<Integer> |
StandardSocketOptions.SO_RCVBUF
ソケット受信バッファーのサイズ。
|
static SocketOption<Integer> |
StandardSocketOptions.SO_SNDBUF
ソケット送信バッファーのサイズ。
|
修飾子と型 | メソッドと説明 |
---|---|
Future<Integer> |
AsynchronousByteChannel.read(ByteBuffer dst)
このチャネルのバイトシーケンスを指定のバッファーに読み込みます。
|
abstract Future<Integer> |
AsynchronousSocketChannel.read(ByteBuffer dst) |
abstract Future<Integer> |
AsynchronousFileChannel.read(ByteBuffer dst, long position)
このチャネルのバイトシーケンスを、指定されたファイル位置からバッファーに読み込みます。
|
Future<Integer> |
AsynchronousByteChannel.write(ByteBuffer src)
このチャネルのバイトシーケンスを指定のバッファーから書き出します。
|
abstract Future<Integer> |
AsynchronousSocketChannel.write(ByteBuffer src) |
abstract Future<Integer> |
AsynchronousFileChannel.write(ByteBuffer src, long position)
指定されたバッファーのバイトシーケンスをこのチャネルの指定されたファイル位置に書き込みます。
|
修飾子と型 | メソッドと説明 |
---|---|
<A> void |
AsynchronousByteChannel.read(ByteBuffer dst, A attachment, CompletionHandler<Integer,? super A> handler)
このチャネルのバイトシーケンスを指定のバッファーに読み込みます。
|
<A> void |
AsynchronousSocketChannel.read(ByteBuffer dst, A attachment, CompletionHandler<Integer,? super A> handler) |
abstract <A> void |
AsynchronousFileChannel.read(ByteBuffer dst, long position, A attachment, CompletionHandler<Integer,? super A> handler)
このチャネルのバイトシーケンスを、指定されたファイル位置からバッファーに読み込みます。
|
abstract <A> void |
AsynchronousSocketChannel.read(ByteBuffer dst, long timeout, TimeUnit unit, A attachment, CompletionHandler<Integer,? super A> handler)
このチャネルのバイトシーケンスを指定のバッファーに読み込みます。
|
<A> void |
AsynchronousByteChannel.write(ByteBuffer src, A attachment, CompletionHandler<Integer,? super A> handler)
このチャネルのバイトシーケンスを指定のバッファーから書き出します。
|
<A> void |
AsynchronousSocketChannel.write(ByteBuffer src, A attachment, CompletionHandler<Integer,? super A> handler) |
abstract <A> void |
AsynchronousFileChannel.write(ByteBuffer src, long position, A attachment, CompletionHandler<Integer,? super A> handler)
指定されたバッファーのバイトシーケンスをこのチャネルの指定されたファイル位置に書き込みます。
|
abstract <A> void |
AsynchronousSocketChannel.write(ByteBuffer src, long timeout, TimeUnit unit, A attachment, CompletionHandler<Integer,? super A> handler)
このチャネルのバイトシーケンスを指定のバッファーから書き出します。
|
修飾子と型 | メソッドと説明 |
---|---|
Map<String,Integer> |
Calendar.getDisplayNames(int field, int style, Locale locale)
指定された
style および locale のカレンダ field のすべての名前と、それに対応するフィールド値を含む Map を返します。 |
修飾子と型 | メソッドと説明 |
---|---|
Integer |
MBeanServerConnection.getMBeanCount()
MBean サーバーに登録されている MBean の数を返します。
|
Integer |
MBeanServer.getMBeanCount()
MBean サーバーに登録されている MBean の数を返します。
|
修飾子と型 | フィールドと説明 |
---|---|
static SimpleType<Integer> |
SimpleType.INTEGER
Java クラス名が
java.lang.Integer である値を記述する SimpleType インスタンスです。 |
修飾子と型 | メソッドと説明 |
---|---|
Integer |
RelationServiceMBean.checkRoleReading(String roleName, String relationTypeName)
指定された型の関係で、指定された Role の読み取りが可能かどうかをチェックします。
|
Integer |
RelationService.checkRoleReading(String roleName, String relationTypeName)
指定された型の関係で、指定された Role の読み取りが可能かどうかをチェックします。
|
Integer |
RelationServiceMBean.checkRoleWriting(Role role, String relationTypeName, Boolean initFlag)
指定された型の関係で、指定された Role の設定が可能かどうかをチェックします。
|
Integer |
RelationService.checkRoleWriting(Role role, String relationTypeName, Boolean initFlag)
指定された型の関係で、指定された Role の設定が可能かどうかをチェックします。
|
Integer |
RelationSupport.getRoleCardinality(String roleName)
指定されたロール内で現在参照されている MBean の数を返します。
|
Integer |
Relation.getRoleCardinality(String roleName)
指定されたロール内で現在参照されている MBean の数を返します。
|
Integer |
RelationServiceMBean.getRoleCardinality(String relationId, String roleName)
指定されたロール内で現在参照されている MBean の数を取得します。
|
Integer |
RelationService.getRoleCardinality(String relationId, String roleName)
指定されたロール内で現在参照されている MBean の数を取得します。
|
修飾子と型 | メソッドと説明 |
---|---|
Integer |
TargetedNotification.getListenerID()
通知のターゲットとなるリスナーの ID です。
|
コンストラクタと説明 |
---|
TargetedNotification(Notification notification, Integer listenerID)
TargetedNotification オブジェクトを構築します。 |
修飾子と型 | メソッドと説明 |
---|---|
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) |
Integer[] |
RMIConnection.addNotificationListeners(ObjectName[] names, MarshalledObject[] filters, Subject[] delegationSubjects)
|
Integer |
RMIConnectionImpl_Stub.getMBeanCount(Subject $param_Subject_1) |
Integer |
RMIConnectionImpl.getMBeanCount(Subject delegationSubject) |
Integer |
RMIConnection.getMBeanCount(Subject delegationSubject)
MBeanServerConnection.getMBeanCount() メソッドを処理します。 |
修飾子と型 | メソッドと説明 |
---|---|
void |
RMIConnectionImpl_Stub.removeNotificationListeners(ObjectName $param_ObjectName_1, Integer[] $param_arrayOf_Integer_2, Subject $param_Subject_3) |
void |
RMIConnectionImpl.removeNotificationListeners(ObjectName name, Integer[] listenerIDs, Subject delegationSubject) |
void |
RMIConnection.removeNotificationListeners(ObjectName name, Integer[] listenerIDs, Subject delegationSubject)
|
修飾子と型 | メソッドと説明 |
---|---|
Integer |
TimerMBean.addNotification(String type, String message, Object userData, Date date)
指定された
type 、message 、および userData で新しいタイマー通知を作成し、これを指定の日付、間隔 null、およびオカレンス数とともに通知リストに挿入します。 |
Integer |
Timer.addNotification(String type, String message, Object userData, Date date)
指定された
type 、message 、および userData で新しいタイマー通知を作成し、これを指定の日付、間隔 null、およびオカレンス数とともに通知リストに挿入します。 |
Integer |
TimerMBean.addNotification(String type, String message, Object userData, Date date, long period)
指定された
type 、message 、および userData で新しいタイマー通知を作成し、これを指定の日付、間隔 null、およびオカレンス数とともに通知リストに挿入します。 |
Integer |
Timer.addNotification(String type, String message, Object userData, Date date, long period)
指定された
type 、message 、および userData で新しいタイマー通知を作成し、これを指定の日付、間隔 null、およびオカレンス数とともに通知リストに挿入します。 |
Integer |
TimerMBean.addNotification(String type, String message, Object userData, Date date, long period, long nbOccurences)
指定された
type 、message 、および userData で新しいタイマー通知を作成し、これを指定の日付、間隔、およびオカレンス数とともに通知リストに挿入します。 |
Integer |
Timer.addNotification(String type, String message, Object userData, Date date, long period, long nbOccurences)
指定された
type 、message 、および userData で新しいタイマー通知を作成し、これを指定の日付、間隔、およびオカレンス数とともに通知リストに挿入します。 |
Integer |
TimerMBean.addNotification(String type, String message, Object userData, Date date, long period, long nbOccurences, boolean fixedRate)
指定された
type 、message 、および userData で新しいタイマー通知を作成し、これを指定の日付、間隔、およびオカレンス数とともに通知リストに挿入します。 |
Integer |
Timer.addNotification(String type, String message, Object userData, Date date, long period, long nbOccurences, boolean fixedRate)
指定された
type 、message 、および userData で新しいタイマー通知を作成し、これを指定の日付、間隔、およびオカレンス数とともに通知リストに挿入します。 |
Integer |
TimerNotification.getNotificationID()
タイマー通知識別子を取得します。
|
修飾子と型 | メソッドと説明 |
---|---|
Vector<Integer> |
TimerMBean.getAllNotificationIDs()
通知リストに登録されているすべてのタイマー通知識別子を取得します。
|
Vector<Integer> |
Timer.getAllNotificationIDs()
通知リストに登録されているすべてのタイマー通知識別子を取得します。
|
Vector<Integer> |
TimerMBean.getNotificationIDs(String type)
指定されたタイプに対応するすべてのタイマー通知識別子を取得します。
|
Vector<Integer> |
Timer.getNotificationIDs(String type)
指定されたタイプに対応するすべてのタイマー通知識別子を取得します。
|
修飾子と型 | メソッドと説明 |
---|---|
Date |
TimerMBean.getDate(Integer id)
タイマー通知に関連付けられている日付のコピーを取得します。
|
Date |
Timer.getDate(Integer id)
タイマー通知に関連付けられている日付のコピーを取得します。
|
Boolean |
TimerMBean.getFixedRate(Integer id)
定期通知を fixed-delay で実行するか fixed-rate で実行するかを示すフラグのコピーを取得します。
|
Boolean |
Timer.getFixedRate(Integer id)
定期通知を fixed-delay で実行するか fixed-rate で実行するかを示すフラグのコピーを取得します。
|
Long |
TimerMBean.getNbOccurences(Integer id)
タイマー通知に関連付けられている残りの発行数のコピーを取得します。
|
Long |
Timer.getNbOccurences(Integer id)
タイマー通知に関連付けられている残りの発行数のコピーを取得します。
|
String |
TimerMBean.getNotificationMessage(Integer id)
指定された識別子に対応するタイマー通知の詳細メッセージを取得します。
|
String |
Timer.getNotificationMessage(Integer id)
指定された識別子に対応するタイマー通知の詳細メッセージを取得します。
|
String |
TimerMBean.getNotificationType(Integer id)
指定された識別子に対応するタイマー通知タイプを取得します。
|
String |
Timer.getNotificationType(Integer id)
指定された識別子に対応するタイマー通知タイプを取得します。
|
Object |
TimerMBean.getNotificationUserData(Integer id)
指定された識別子に対応するタイマー通知のユーザーデータオブジェクトを取得します。
|
Object |
Timer.getNotificationUserData(Integer id)
指定された識別子に対応するタイマー通知のユーザーデータオブジェクトを取得します。
|
Long |
TimerMBean.getPeriod(Integer id)
タイマー通知に関連付けられている間隔 (ミリ秒) のコピーを取得します。
|
Long |
Timer.getPeriod(Integer id)
タイマー通知に関連付けられている間隔 (ミリ秒) のコピーを取得します。
|
void |
TimerMBean.removeNotification(Integer id)
指定された識別子に対応するタイマー通知を通知リストから削除します。
|
void |
Timer.removeNotification(Integer id)
指定された識別子に対応するタイマー通知を通知リストから削除します。
|
コンストラクタと説明 |
---|
TimerNotification(String type, Object source, long sequenceNumber, long timeStamp, String msg, Integer id)
タイマー通知オブジェクトを作成します。
|
修飾子と型 | メソッドと説明 |
---|---|
List<Integer> |
ScriptContext.getScopes()
ScriptContext 内のスコープに対する、すべての有効値の不変の
List を返します。 |
List<Integer> |
SimpleScriptContext.getScopes()
ScriptContext 内のスコープに対する、すべての有効値の不変の
List を返します。 |
修飾子と型 | フィールドと説明 |
---|---|
static Integer |
JLayeredPane.DEFAULT_LAYER
デフォルトレイヤーを定義する簡易オブジェクトです。
|
static Integer |
JLayeredPane.DRAG_LAYER
ドラッグレイヤーを定義する簡易オブジェクトです。
|
static Integer |
JLayeredPane.FRAME_CONTENT_LAYER
フレーム内容レイヤーを定義する簡易オブジェクトです。
|
static Integer |
JLayeredPane.MODAL_LAYER
モーダルレイヤーを定義する簡易オブジェクトです。
|
static Integer |
JLayeredPane.PALETTE_LAYER
パレットレイヤーを定義する簡易オブジェクトです。
|
static Integer |
JLayeredPane.POPUP_LAYER
ポップアップレイヤーを定義する簡易オブジェクトです。
|
修飾子と型 | メソッドと説明 |
---|---|
protected Integer |
JLayeredPane.getObjectForLayer(int layer)
指定されたレイヤーに関連した Integer オブジェクトを返します。
|
修飾子と型 | メソッドと説明 |
---|---|
protected Hashtable<Component,Integer> |
JLayeredPane.getComponentToLayer()
コンポーネントをレイヤーにマッピングするハッシュテーブルを返します。
|
修飾子と型 | メソッドと説明 |
---|---|
void |
JInternalFrame.setLayer(Integer layer)
このコンポーネントのレイヤー属性を設定する簡易メソッドです。
|
修飾子と型 | メソッドと説明 |
---|---|
protected Integer |
BasicSliderUI.getHighestValue()
ラベルテーブル内でエントリを持つ値の最大値を返します。
|
protected Integer |
BasicSliderUI.getLowestValue()
ラベルテーブル内でエントリを持つ値の最小値を返します。
|
バグまたは機能を送信
詳細な API リファレンスおよび開発者ドキュメントについては、Java SE のドキュメントを参照してください。そのドキュメントには、概念的な概要、用語の定義、回避方法、有効なコード例などの、開発者を対象にしたより詳細な説明が含まれています。
Copyright © 1993, 2013, Oracle and/or its affiliates. All rights reserved.