Enum RequestedVisibility

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

    public enum RequestedVisibility
    extends java.lang.Enum<RequestedVisibility>
    The access permission that can be requested by the caller for the shared link. Note that the final resolved visibility of the shared link takes into account other aspects, such as team and shared folder settings. Check the ResolvedVisibility for more info on the possible resolved visibility values of shared links.
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      PASSWORD
      A link-specific password is required to access the link.
      PUBLIC
      Anyone who has received the link can access it.
      TEAM_ONLY
      Only members of the same team can access the link.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static RequestedVisibility valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static RequestedVisibility[] 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, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • PUBLIC

        public static final RequestedVisibility PUBLIC
        Anyone who has received the link can access it. No login required.
      • TEAM_ONLY

        public static final RequestedVisibility TEAM_ONLY
        Only members of the same team can access the link. Login is required.
      • PASSWORD

        public static final RequestedVisibility PASSWORD
        A link-specific password is required to access the link. Login is not required.
    • Method Detail

      • values

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

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