jp.skypencil.guava.stream.CharacteristicSets Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of helper Show documentation
Show all versions of helper Show documentation
Helper classes to help Java8 to collaborate with Guava
The newest version!
package jp.skypencil.guava.stream;
import java.util.EnumSet;
import java.util.stream.Collector.Characteristics;
final class CharacteristicSets {
static final EnumSet EMPTY = EnumSet
.noneOf(java.util.stream.Collector.Characteristics.class);
static final EnumSet IDENTITY = EnumSet
.of(Characteristics.IDENTITY_FINISH);
private CharacteristicSets() {}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy