Deprecated API


Contents
Deprecated Methods
com.google.common.collect.Ordering.from(Ordering)
          no need to use this 
com.google.common.net.InternetDomainName.hasRecognizedTld()
          use InternetDomainName.hasPublicSuffix() 
com.google.common.net.InternetDomainName.isImmediatelyUnderTld()
          use InternetDomainName.isTopPrivateDomain() 
com.google.common.net.InternetDomainName.isRecognizedTld()
          use InternetDomainName.isPublicSuffix() 
com.google.common.net.InternetDomainName.isUnderRecognizedTld()
          use InternetDomainName.isUnderPublicSuffix() 
com.google.common.collect.ImmutableSet.of(E[])
          use ImmutableSet.copyOf(Object[]). 
com.google.common.collect.ImmutableList.of(E[])
          use ImmutableList.copyOf(Object[]) 
com.google.common.collect.ImmutableMultiset.of(E[])
          use ImmutableMultiset.copyOf(Object[]). 
com.google.common.collect.ImmutableSortedSet.of(E[])
          use ImmutableSortedSet.copyOf(Comparable[]). 
com.google.common.net.InternetDomainName.recognizedTld()
          use InternetDomainName.publicSuffix() 
com.google.common.net.InternetDomainName.rightmostNonTldPart()
          use the first part of the InternetDomainName.topPrivateDomain() 
com.google.common.net.InternetDomainName.topCookieDomain()
          use InternetDomainName.topPrivateDomain() 
com.google.common.io.ByteArrayDataOutput.writeBytes(String)
          This method is dangerous as it discards the high byte of every character. For UTF-8, use write(s.getBytes(Charsets.UTF_8)).