2017.08.09
apache commons exsample JAVA lang3 サンプルプログラム
ReflectionToStringBuilderの説明(google翻訳) reflectionを使用してObject.toString()メソッドを実装するのに役立ちます。 このクラスはリフレクションを使用して、追加するフィールドを決定します。これらのフィールドは通常プライベートなので、クラスは …More Read
2017.08.02
apache commons exsample JAVA lang3 サンプルプログラム
HashCodeBuilderの説明(google翻訳) Object.hashCode()メソッドの実装を支援します。 このクラスを使用すると、任意のクラスに対して適切なhashCodeメソッドを構築できます。これは、Joshua Bloch著「Effective Java」という本のルールに従い …More Read
2017.07.26
apache commons exsample JAVA lang3 サンプルプログラム
EqualsBuilderの説明(google翻訳) Object.equals(Object)メソッドの実装を支援します。 このクラスは、任意のクラスに対して良好なequalsメソッドを構築するメソッドを提供します。 Joshua BlochによるEffective Javaのルールに従います。特 …More Read
2017.07.19
apache commons exsample JAVA lang3 サンプルプログラム
DiffBuilderの説明(google翻訳) Diffable.diff(Object)メソッドの実装を支援します。 このクラスを使用するには、次のようにコードを記述します。 public class Person implements Diffable { String name; int a …More Read
2017.07.12
apache commons exsample JAVA lang3 サンプルプログラム
CompareToBuilderの説明(google翻訳) Comparable.compareTo(Object)メソッドの実装を支援します。 EqualsBuilderとHashCodeBuilderで構築されたequals(Object)とhashcode()と一貫しています。 equals( …More Read
2017.07.10
apache commons exsample JAVA lang3 サンプルプログラム
Validateの説明(google翻訳) このクラスは引数の検証を支援します。検証方法は、以下の原則に基づいています。 無効なヌル引数により、NullPointerExceptionが発生します。 null以外の引数を指定すると、IllegalArgumentExceptionが発生します。 配列 …More Read
2017.06.28
apache commons exsample JAVA lang3 サンプルプログラム
ThreadUtilsの説明(google翻訳) java.lang.Threadおよびjava.lang.ThreadGroupのヘルパー。 Thread及びThreadGroupの操作クラスです。 アクティブスレッドを全て取得する、idでスレッドを検索するなどすることが出来ます。 ThreadU …More Read
2017.06.21
apache commons exsample JAVA lang3 サンプルプログラム
SystemUtilsの説明(google翻訳) java.lang.Systemのヘルパー。 セキュリティ制限のためにシステムプロパティを読み取れない場合、このクラスの対応するフィールドはnullに設定され、メッセージはSystem.errに書き込まれます。 System.getPropertyの …More Read
2017.06.14
apache commons exsample JAVA lang3 サンプルプログラム
StringUtilsの説明(google翻訳) null安全なStringの操作 ・IsEmpty/IsBlank – 文字列にテキストが含まれているかどうかを調べる ・Trim/Strip – 先頭と末尾の空白を削除する ・Equals/Compare – 2 …More Read
2017.06.07
apache commons exsample JAVA lang3 サンプルプログラム
StringEscapeUtilsの説明(google翻訳) Java、Java Script、HTML、およびXMLの文字列をエスケープし、エネッセイを解除します。 文字列をエスケープ処理してくれます。 思ったように動いてくれないような、動いてくれるような。 CSV, HTMLに関しては利用しやす …More Read