Guava – CaseFormat Class

  • Post author:
  • Post category:Guava
  • Post comments:0 Comments

CaseFormat is a utility class to provide conversion between various ASCII char formats. Class Declaration Following is the declaration for com.google.common.base.CaseFormat class − @GwtCompatible public enum CaseFormat extends Enum<CaseFormat> Enum Constants Sr.NoEnum…

Continue ReadingGuava – CaseFormat Class

Lodash – findLast method

  • Post author:
  • Post category:Lodash
  • Post comments:0 Comments

Syntax Of Lodash findLast method _.findLast(collection, [predicate=_.identity], [fromIndex=collection.length-1]) This Lodash findLast method is like _.find except that it iterates over elements of collection from right to left. Arguments collection (Array|Object) −…

Continue ReadingLodash – findLast method

Guava – CharMatcher Class

  • Post author:
  • Post category:Guava
  • Post comments:1 Comment

CharMatcher provides various methods to handle various JAVA types for char values. Class Declaration Following is the declaration for com.google.common.base.CharMatcher class − @GwtCompatible(emulated = true) public final class CharMatcher extends Object Fields…

Continue ReadingGuava – CharMatcher Class

Lodash – find methods

  • Post author:
  • Post category:Lodash
  • Post comments:1 Comment

Syntax Of Lodash find methods _.find(collection, [predicate=_.identity], [fromIndex=0]) Lodash find methods Iterates over elements of the collection, returning the first element predicate returns truthy for. The predicate is invoked with…

Continue ReadingLodash – find methods

Guava – Splitter Class

  • Post author:
  • Post category:Guava
  • Post comments:1 Comment

Splitter provides various methods to handle splitting operations on string, objects, etc. Class Declaration Following is the declaration for com.google.common.base.Splitter class − @GwtCompatible(emulated = true) public final class Splitter extends Object Class…

Continue ReadingGuava – Splitter Class

Guava – Joiner class

  • Post author:
  • Post category:Guava
  • Post comments:0 Comments

Joiner provides various methods to handle joining operations on string, objects, etc. Class Declaration Following is the declaration for com.google.common.base.Joiner class − @GwtCompatible public class Joiner extends Object Class Methods Sr.NoMethod &…

Continue ReadingGuava – Joiner class