congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
ConstructorUtils.getImmutableTypes
Code IndexAdd Tabnine to your IDE (free)

How to use
getImmutableTypes
method
in
org.azeckoski.reflectutils.ConstructorUtils

Best Java code snippets using org.azeckoski.reflectutils.ConstructorUtils.getImmutableTypes (Showing top 4 results out of 315)

origin: org.azeckoski/reflectutils

/**
 * @param type any class
 * @return true if this class is a primitive or other simple class (like String or immutable)
 */
public static boolean isClassSimple(Class<?> type) {
  checkNull(type);
  boolean simple = false;
  if ( isClassPrimitive(type) 
      || getImmutableTypes().contains(type)) {
    simple = true;
  }
  return simple;
}
origin: azeckoski/reflectutils

/**
 * @param type any class
 * @return true if this class is a primitive or other simple class (like String or immutable)
 */
public static boolean isClassSimple(Class<?> type) {
  checkNull(type);
  boolean simple = false;
  if ( isClassPrimitive(type) 
      || getImmutableTypes().contains(type)) {
    simple = true;
  }
  return simple;
}
origin: org.azeckoski/reflectutils

if (ConstructorUtils.getImmutableTypes().contains(destClass)) {
origin: azeckoski/reflectutils

if (ConstructorUtils.getImmutableTypes().contains(destClass)) {
org.azeckoski.reflectutilsConstructorUtilsgetImmutableTypes

Popular methods of ConstructorUtils

  • isClassBean
  • isClassMap
  • isClassSimple
  • isClassArray
  • isClassCollection
  • <init>
    Empty constructor WARNING: use the #getInstance() method to get this rather than recreating it over
  • checkNull
  • classAssignable
    Checks if assignFrom is assignable to assignTo (i.e. this is OK: assignFrom b; assignTo a = (assignT
  • classEquals
    Will compare 2 classes for equality which will make a friendly comparison of types and will happily
  • constructClass
    Construct an object for the class of the given type with the given params (arguments), arguments mus
  • getClassDataCacher
  • getClassFromInterface
    Gets a valid class which can be constructed from an interface or special cases which cannot be const
  • getClassDataCacher,
  • getClassFromInterface,
  • getDefaultValue,
  • getExtendAndInterfacesForClass,
  • getImmutableDefaults,
  • getInstance,
  • getInterfacesForClass,
  • getPrimitiveDefaults,
  • getPrimitiveToWrapper

Popular in Java

  • Creating JSON documents from java classes using gson
  • onRequestPermissionsResult (Fragment)
  • scheduleAtFixedRate (Timer)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • BufferedInputStream (java.io)
    A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the i
  • HashSet (java.util)
    HashSet is an implementation of a Set. All optional operations (adding and removing) are supported.
  • Callable (java.util.concurrent)
    A task that returns a result and may throw an exception. Implementors define a single method with no
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
  • JLabel (javax.swing)
  • Join (org.hibernate.mapping)
  • Top PhpStorm plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now