Codota Logo
ObjCClass.getByNameNotLoaded
Code IndexAdd Codota to your IDE (free)

How to use
getByNameNotLoaded
method
in
org.robovm.objc.ObjCClass

Best Java code snippets using org.robovm.objc.ObjCClass.getByNameNotLoaded (Showing top 4 results out of 315)

  • Common ways to obtain ObjCClass
private void myMethod () {
ObjCClass o =
  • Codota IconObjCClass.getByType((Class<? extends ObjCObject>)array[index])
  • Codota IconClass type;ObjCClass.getByType(type)
  • Codota IconClass type;ObjCClass.registerCustomClass(type)
  • Smart code suggestions by Codota
}
origin: robovm/robovm

public static ObjCClass getByName(String objcClassName) {
  synchronized (objcBridgeLock) {
    ObjCClass c = nameToClass.get(objcClassName);
    if (c == null) {
      c = getByNameNotLoaded(objcClassName);
      if (c == null) {
        throw new ObjCClassNotFoundException("Could not find Java class corresponding to Objective-C class: " + objcClassName);
      }
    }
    return c;
  }
}

origin: robovm/robovm

ObjCClass c = ObjCObject.getPeerObject(classPtr);
if (c == null) {
  c = getByNameNotLoaded(VM.newStringUTF(ObjCRuntime.class_getName(classPtr)));
  c = ObjCObject.getPeerObject(classPtr);
  if (c == null) {
    c = getByNameNotLoaded(VM.newStringUTF(ObjCRuntime.class_getName(classPtr)));
    if (c == null) {
      for (String protocol : getProtocols(classPtr, false)) {
origin: com.gluonhq/robovm-objc

public static ObjCClass getByName(String objcClassName) {
  synchronized (objcBridgeLock) {
    ObjCClass c = nameToClass.get(objcClassName);
    if (c == null) {
      c = getByNameNotLoaded(objcClassName);
      if (c == null) {
        throw new ObjCClassNotFoundException("Could not find Java class corresponding to Objective-C class: " + objcClassName);
      }
    }
    return c;
  }
}

origin: com.gluonhq/robovm-objc

ObjCClass c = ObjCObject.getPeerObject(classPtr);
if (c == null) {
  c = getByNameNotLoaded(VM.newStringUTF(ObjCRuntime.class_getName(classPtr)));
  c = ObjCObject.getPeerObject(classPtr);
  if (c == null) {
    c = getByNameNotLoaded(VM.newStringUTF(ObjCRuntime.class_getName(classPtr)));
    if (c == null) {
      for (String protocol : getProtocols(classPtr, false)) {
org.robovm.objcObjCClassgetByNameNotLoaded

Popular methods of ObjCClass

  • getByType
  • getHandle
  • getName
  • getType
  • registerCustomClass
  • <init>
  • findCallbacks
  • getCallbacks
  • getCustomClassName
  • getFromObject
  • getProtocols
  • isCustom
  • getProtocols,
  • isCustom,
  • isObjCProxy,
  • register,
  • toObjCClass

Popular in Java

  • Running tasks concurrently on multiple threads
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • getResourceAsStream (ClassLoader)
    Returns a stream for the resource with the specified name. See #getResource(String) for a descriptio
  • addToBackStack (FragmentTransaction)
  • ObjectMapper (com.fasterxml.jackson.databind)
    This mapper (or, data binder, or codec) provides functionality for converting between Java objects (
  • MessageFormat (java.text)
    MessageFormat provides a means to produce concatenated messages in language-neutral way. Use this to
  • HashSet (java.util)
    This class implements the Set interface, backed by a hash table (actually a HashMap instance). It m
  • Reference (javax.naming)
  • HttpServlet (javax.servlet.http)
    Provides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site. A sub
  • Location (org.springframework.beans.factory.parsing)
    Class that models an arbitrary location in a Resource.Typically used to track the location of proble
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now