Enum IStreamSummary.Type

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<IStreamSummary.Type>
    Enclosing interface:
    IStreamSummary

    public static enum IStreamSummary.Type
    extends java.lang.Enum<IStreamSummary.Type>
    Types of streams include 'mainline', 'release', 'development', 'virtual' and 'task'. The default is 'development'.

    Defines the role of a stream: A 'mainline' may not have a parent. A 'virtual' stream is not a stream but an alternate view of its parent stream. The 'development' and 'release' streams have controlled flow. Can be changed. A 'task' stream is a lightweight short-lived stream that only promotes modified content to the repository, branched data is stored in shadow tables that are removed when the task stream is deleted or unloaded.

    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      static IStreamSummary.Type fromString​(java.lang.String str)
      Return a suitable Stream type as inferred from the passed-in string, which is assumed to be the string form of a Stream type.
      java.lang.String toString()  
      static IStreamSummary.Type valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static IStreamSummary.Type[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

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

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

      • values

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

        public static IStreamSummary.Type 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
      • fromString

        public static IStreamSummary.Type fromString​(java.lang.String str)
        Return a suitable Stream type as inferred from the passed-in string, which is assumed to be the string form of a Stream type. Otherwise return the UNKNOWN Stream type
        Parameters:
        str - str
        Returns:
        Type
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Enum<IStreamSummary.Type>