Enum Owner

    • Enum Constant Detail

      • SUPPORT

        public static final Owner SUPPORT
      • CST

        public static final Owner CST
      • MAINTENANCE

        public static final Owner MAINTENANCE
      • PM

        public static final Owner PM
      • ENGINEERING

        public static final Owner ENGINEERING
      • ITOP

        public static final Owner ITOP
      • CUSTOMER

        public static final Owner CUSTOMER
      • RENEWAL

        public static final Owner RENEWAL
      • DECISION

        public static final Owner DECISION
      • CWI

        public static final Owner CWI
      • DOC

        public static final Owner DOC
      • EMPTY

        public static final Owner EMPTY
      • OnlyOffice

        public static final Owner OnlyOffice
    • Method Detail

      • values

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

        public static Owner valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null