Enum CoreExecutionPhase

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<CoreExecutionPhase>

    public enum CoreExecutionPhase
    extends java.lang.Enum<CoreExecutionPhase>
    Generic execution phases used by core features. Concrete front-ends will map these phases to concrete phases in the front-end for the purposes of assembling feature lookup tables.
    • Field Detail

      • CoreSessionStartPhase

        public static final java.lang.String CoreSessionStartPhase
        See Also:
        Constant Field Values
      • CoreHttpSessionStartPhase

        public static final java.lang.String CoreHttpSessionStartPhase
        See Also:
        Constant Field Values
      • CoreSessionTriggerPhase

        public static final java.lang.String CoreSessionTriggerPhase
        See Also:
        Constant Field Values
      • CoreSessionSetupPhase

        public static final java.lang.String CoreSessionSetupPhase
        See Also:
        Constant Field Values
      • CoreMidSessionPhase

        public static final java.lang.String CoreMidSessionPhase
        See Also:
        Constant Field Values
      • CoreEndSessionPhase

        public static final java.lang.String CoreEndSessionPhase
        See Also:
        Constant Field Values
    • Method Detail

      • values

        public static CoreExecutionPhase[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (CoreExecutionPhase c : CoreExecutionPhase.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static CoreExecutionPhase valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null