This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package trial.yy.guava.client.base; | |
| import com.google.common.base.Stopwatch; | |
| import java.util.Random; | |
| /** | |
| * com.google.common.base.Stopwatchを試すためのサンプル | |
| * User: yy | |
| * Date: 13/04/23 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package trial.yy.guava.client.base; | |
| import com.google.common.base.Optional; | |
| import java.util.HashMap; | |
| import java.util.Map; | |
| import java.util.Set; | |
| /** | |
| * com.google.common.base.Optionalを試すためのサンプル |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package trial.yy.guava.client.math; | |
| import com.google.common.math.IntMath; | |
| import com.google.common.math.LongMath; | |
| /** | |
| * com.google.common.math.IntMath,LongMathを試すためのサンプル | |
| * User: yy | |
| */ | |
| public class MathClient { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package trial.yy.guava.client.collect; | |
| import com.google.common.collect.Lists; | |
| import java.util.HashSet; | |
| import java.util.List; | |
| import java.util.Set; | |
| /** | |
| * com.google.common.collect.Listsを試すためのサンプル |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package trial.yy.guava.client.base; | |
| import com.google.common.base.Strings; | |
| /** | |
| * com.google.common.base.Stringsを試すためのサンプル | |
| * User: yy | |
| */ | |
| public class StringsClient { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package trial.yy.guava.client.base; | |
| import com.google.common.base.Joiner; | |
| import java.util.Arrays; | |
| import java.util.HashMap; | |
| import java.util.List; | |
| import java.util.Map; | |
| /** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package trial.yy.guava.client.primitives; | |
| import com.google.common.primitives.Primitives; | |
| import java.util.Set; | |
| /** | |
| * com.google.common.primitives.Primitivesを試すためのサンプル | |
| * User: yy | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package trial.yy.guava.client.primitives; | |
| import com.google.common.primitives.Booleans; | |
| import java.util.Arrays; | |
| import java.util.List; | |
| /** | |
| * com.google.common.primitives.Booleansを試すためのサンプル | |
| * User: yy |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package trial.yy.guava.client.primitives; | |
| import com.google.common.primitives.Ints; | |
| import java.util.Arrays; | |
| import java.util.List; | |
| /** | |
| * com.google.common.primitives.Intsを試すためのサンプル | |
| * User: yy |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package trial.yy.guava.client.base; | |
| import com.google.common.base.Preconditions; | |
| /** | |
| * com.google.common.base.Preconditionsを試すためのサンプル | |
| * User: yy | |
| */ | |
| public class PreconditionsClient { |