Enum Endpoint

    • Enum Constant Detail

      • ACTIONGROUPS

        public static final Endpoint ACTIONGROUPS
      • CACHE

        public static final Endpoint CACHE
      • SGCONFIG

        public static final Endpoint SGCONFIG
      • LICENSE

        public static final Endpoint LICENSE
      • ROLES

        public static final Endpoint ROLES
      • ROLESMAPPING

        public static final Endpoint ROLESMAPPING
      • INTERNALUSERS

        public static final Endpoint INTERNALUSERS
      • SYSTEMINFO

        public static final Endpoint SYSTEMINFO
      • PERMISSIONSINFO

        public static final Endpoint PERMISSIONSINFO
      • AUTHTOKEN

        public static final Endpoint AUTHTOKEN
      • TENANTS

        public static final Endpoint TENANTS
      • BLOCKS

        public static final Endpoint BLOCKS
    • Method Detail

      • values

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

        public static Endpoint 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