CommonUtils
哈天奇不奇
这个作者很懒,什么都没留下…
展开
-
Guava Collections - Multiset Interface
Multiset InterfaceMultiset interface extends ‘Set’ to have duplicate elements, and provides various utility methods to deal with the occurrences of such elements in a set.package org.fool.guava.c...原创 2016-04-01 16:44:04 · 92 阅读 · 0 评论 -
commons-lang examples
Maven Dependency<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.apa...原创 2013-01-18 14:42:06 · 94 阅读 · 0 评论 -
Guava IO
Maven Dependency<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.apa...原创 2016-04-07 15:45:36 · 145 阅读 · 0 评论 -
Guava Basic Utilities
check string with null or empty value - Strings.isNullOrEmpty(str)package org.fool.test;import com.google.common.base.Strings;public class StringTest { public static void main(String[] a...原创 2016-04-06 17:39:30 · 92 阅读 · 0 评论 -
Guava Collections - Maps
1. Maven Dependency<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.a...原创 2016-04-06 16:04:32 · 124 阅读 · 0 评论 -
Guava Collections - Sets
1.Maven Dependency<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.ap...原创 2016-04-06 14:46:12 · 95 阅读 · 0 评论 -
Guava Collections - Lists
1.Maven Dependency<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.a...原创 2016-04-06 13:49:19 · 196 阅读 · 0 评论 -
Guava Collections - Table Interface
Table InterfaceTable represents a special map where two keys can be specified in combined fashion to refer to a single value. It is similar to creating a map of maps.package org.fool.guava.collec...原创 2016-04-01 16:57:31 · 97 阅读 · 0 评论 -
Guava Collections - BiMap Interface
BiMap InterfaceA BiMap is a special kind of map which maintains an inverse view of the map while ensuring that no duplicate values are present in the map and a value can be used safely to get the k...原创 2016-04-01 16:53:47 · 81 阅读 · 0 评论 -
Guava Collections - Multimap Interface
Multimap InterfaceMultimap interface extends Map so that its keys can be mapped to multiple values at a time.package org.fool.guava.collections;import java.util.Collection;import java.util...原创 2016-04-01 16:45:15 · 86 阅读 · 0 评论 -
commons-io examples
Maven Dependency<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.apac...原创 2013-01-18 17:02:06 · 90 阅读 · 0 评论