Class Procedural


  • public class Procedural
    extends Object
    • Constructor Summary

      Constructors 
      Constructor Description
      Procedural()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      Object _if​(org.apache.felix.service.command.CommandSession session, org.apache.felix.service.command.Function[] fns)  
      void _throw​(Exception e)  
      void _throw​(String message)  
      void _throw​(org.apache.felix.service.command.CommandSession session)  
      Object _try​(org.apache.felix.service.command.CommandSession session, org.apache.felix.service.command.Function func)  
      Object _try​(org.apache.felix.service.command.CommandSession session, org.apache.felix.service.command.Function func, org.apache.felix.service.command.Function error)  
      void _while​(org.apache.felix.service.command.CommandSession session, org.apache.felix.service.command.Function condition, org.apache.felix.service.command.Function ifTrue)  
      List<Object> each​(org.apache.felix.service.command.CommandSession session, Collection<Object> list, org.apache.felix.service.command.Function closure)  
      boolean not​(org.apache.felix.service.command.CommandSession session, org.apache.felix.service.command.Function condition)  
      void until​(org.apache.felix.service.command.CommandSession session, org.apache.felix.service.command.Function condition, org.apache.felix.service.command.Function ifTrue)  
    • Constructor Detail

      • Procedural

        public Procedural()
    • Method Detail

      • _if

        public Object _if​(org.apache.felix.service.command.CommandSession session,
                          org.apache.felix.service.command.Function[] fns)
                   throws Exception
        Throws:
        Exception
      • not

        public boolean not​(org.apache.felix.service.command.CommandSession session,
                           org.apache.felix.service.command.Function condition)
                    throws Exception
        Throws:
        Exception
      • _throw

        public void _throw​(String message)
      • _throw

        public void _throw​(org.apache.felix.service.command.CommandSession session)
                    throws Throwable
        Throws:
        Throwable
      • _try

        public Object _try​(org.apache.felix.service.command.CommandSession session,
                           org.apache.felix.service.command.Function func)
      • _try

        public Object _try​(org.apache.felix.service.command.CommandSession session,
                           org.apache.felix.service.command.Function func,
                           org.apache.felix.service.command.Function error)
                    throws Exception
        Throws:
        Exception
      • _while

        public void _while​(org.apache.felix.service.command.CommandSession session,
                           org.apache.felix.service.command.Function condition,
                           org.apache.felix.service.command.Function ifTrue)
                    throws Exception
        Throws:
        Exception
      • until

        public void until​(org.apache.felix.service.command.CommandSession session,
                          org.apache.felix.service.command.Function condition,
                          org.apache.felix.service.command.Function ifTrue)
                   throws Exception
        Throws:
        Exception