|
|||||||||||
前のクラス 次のクラス | フレームあり フレームなし | ||||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
java.lang.Object org.seasar.framework.util.AssertionUtil
表明についてのユーティリティクラスです。
コンストラクタの概要 | |
protected |
AssertionUtil()
インスタンスを構築します。 |
メソッドの概要 | |
static void |
assertIntegerNotNegative(java.lang.String message,
int num)
int が負でないことを表明します。 |
static void |
assertNotEmpty(java.lang.String message,
java.lang.String s)
文字列が空あるいは null でないことを表明します。 |
static void |
assertNotNull(java.lang.String message,
java.lang.Object obj)
null でないことを表明します。 |
クラス java.lang.Object から継承したメソッド |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
コンストラクタの詳細 |
protected AssertionUtil()
メソッドの詳細 |
public static void assertNotNull(java.lang.String message, java.lang.Object obj) throws java.lang.NullPointerException
null
でないことを表明します。
message
- obj
-
java.lang.NullPointerException
- null
の場合。public static void assertNotEmpty(java.lang.String message, java.lang.String s) throws EmptyRuntimeException
null
でないことを表明します。
message
- s
-
EmptyRuntimeException
- 文字列が空あるいはnull
の場合。public static void assertIntegerNotNegative(java.lang.String message, int num) throws java.lang.IllegalArgumentException
int
が負でないことを表明します。
message
- num
-
java.lang.IllegalArgumentException
- int
が負の場合。
|
|||||||||||
前のクラス 次のクラス | フレームあり フレームなし | ||||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |