com.ibm.jarm.api.util

Enum JarmTracer.SubSystem

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<JarmTracer.SubSystem>
    Enclosing class:
    JarmTracer


    public static enum JarmTracer.SubSystem
    extends java.lang.Enum<JarmTracer.SubSystem>
    Defines subsystems within JARM that are used for trace support.
    • Enum Constant Summary

      Enum Constants 
      Enum Constant and Description
      Api
      JARM public API subsystem.
      RalCM8
      JARM Content Manager 8 RAL subsystem
      RalCommon
      JARM Common RAL subsystem.
      RalP8CE
      JARM P8 Content Engine RAL subsystem.
      RalP8CE_CBR
      JARM P8 Content Engine RAL CBR subsystem.
    • Method Summary

      Methods 
      Modifier and Type Method and Description
      java.lang.String getLabel()
      Returns the label for a subsystem used to generate trace message strings.
      static JarmTracer.SubSystem valueOf(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static JarmTracer.SubSystem[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Method Detail

      • values

        public static JarmTracer.SubSystem[] 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 (JarmTracer.SubSystem c : JarmTracer.SubSystem.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static JarmTracer.SubSystem 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
      • getLabel

        public java.lang.String getLabel()
        Returns the label for a subsystem used to generate trace message strings.
        Returns:
        A String label.

© Copyright IBM Corp. 2010, 2013. All Rights Reserved.