This file contains 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
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>org.sample.jmh</groupId> | |
<artifactId>trial-jmh</artifactId> | |
<version>1.0-SNAPSHOT</version> | |
<packaging>jar</packaging> | |
<name>JMH benchmark sample: Java</name> |
This file contains 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.lombok.client; | |
import static java.lang.System.out; | |
import java.util.ArrayList; | |
import java.util.HashMap; | |
import lombok.val; | |
/** |
This file contains 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.lombok.client; | |
import static java.lang.System.out; | |
import lombok.Getter; | |
import lombok.Setter; | |
/** | |
* Created with Eclipse. | |
* User: yy | |
*/ |
This file contains 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.ImmutableSet; | |
import java.util.Collections; | |
import java.util.LinkedHashSet; | |
import java.util.Set; | |
/** | |
* com.google.common.collect.ImmutableSetを試すためのサンプル |
This file contains 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.CharMatcher; | |
import com.google.common.base.Splitter; | |
import java.util.Map; | |
/** | |
* com.google.common.base.Splitterを試すためのサンプル | |
* User: yy |
This file contains 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.lombok.client; | |
import lombok.Data; | |
import static java.lang.System.out; | |
/** | |
* Created with Eclipse. | |
* User: yy | |
*/ | |
public class LombokDataClient { |
This file contains 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.Doubles; | |
import java.util.Arrays; | |
import java.util.List; | |
/** | |
* com.google.common.primitives.Doublesを試すためのサンプル | |
* User: yy |
This file contains 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.BiMap; | |
import com.google.common.collect.HashBiMap; | |
import java.util.Set; | |
/** | |
* com.google.common.collect.BiMapを試すためのサンプル | |
* User: yy |
This file contains 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.Longs; | |
import java.util.Arrays; | |
import java.util.List; | |
/** | |
* com.google.common.primitives.Longsを試すためのサンプル | |
* User: yy |
This file contains 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.HashMultiset; | |
import com.google.common.collect.Lists; | |
import com.google.common.collect.Multiset; | |
import java.util.HashMap; | |
import java.util.List; | |
import java.util.Map; | |
import java.util.Set; |
NewerOlder