Class Reflective

java.lang.Object
org.apache.felix.gogo.runtime.Reflective

public final class Reflective extends Object
  • Field Details

  • Constructor Details

    • Reflective

      public Reflective()
  • Method Details

    • invoke

      public static Object invoke(CommandSession session, Object target, String name, List<Object> args) throws Exception
      invokes the named method on the given target using the supplied args, which are converted if necessary.
      Parameters:
      session - the session
      target - the target
      name - the name
      args - the args
      Returns:
      the result of the invoked method
      Throws:
      Exception - on exception
    • coerce

      public static Object coerce(CommandSession session, Class<?> type, Object arg, int[] convert)
      converts given argument to specified type and increments convert[0] if any conversion was needed.
      Parameters:
      session - the session
      type - the type
      arg - the arg
      convert - convert[0] is incremented according to the conversion needed, to allow the "best" conversion to be determined.
      Returns:
      converted arg or NO_MATCH if no conversion possible.