Enum SearchJobsRequest.DiversificationLevel

  • All Implemented Interfaces:
    com.google.protobuf.Internal.EnumLite, com.google.protobuf.ProtocolMessageEnum, Serializable, Comparable<SearchJobsRequest.DiversificationLevel>
    Enclosing class:
    SearchJobsRequest

    public static enum SearchJobsRequest.DiversificationLevel
    extends Enum<SearchJobsRequest.DiversificationLevel>
    implements com.google.protobuf.ProtocolMessageEnum
     Controls whether highly similar jobs are returned next to each other in
     the search results. Jobs are identified as highly similar based on
     their titles, job categories, and locations. Highly similar results are
     clustered so that only one representative job of the cluster is
     displayed to the job seeker higher up in the results, with the other jobs
     being displayed lower down in the results.
    
     If you are using pageToken to page through the result set,
     latency might be lower but we can't guarantee that all results are
     returned. If you are using page offset, latency might be higher but all
     results are returned.
     
    Protobuf enum google.cloud.talent.v4.SearchJobsRequest.DiversificationLevel
    • Enum Constant Detail

      • DIVERSIFICATION_LEVEL_UNSPECIFIED

        public static final SearchJobsRequest.DiversificationLevel DIVERSIFICATION_LEVEL_UNSPECIFIED
         The diversification level isn't specified.
         
        DIVERSIFICATION_LEVEL_UNSPECIFIED = 0;
      • DISABLED

        public static final SearchJobsRequest.DiversificationLevel DISABLED
         Disables diversification. Jobs that would normally be pushed to the last
         page would not have their positions altered. This may result in highly
         similar jobs appearing in sequence in the search results.
         
        DISABLED = 1;
      • SIMPLE

        public static final SearchJobsRequest.DiversificationLevel SIMPLE
         Default diversifying behavior. The result list is ordered so that
         highly similar results are pushed to the end of the last page of search
         results.
         
        SIMPLE = 2;
      • ONE_PER_COMPANY

        public static final SearchJobsRequest.DiversificationLevel ONE_PER_COMPANY
         Only one job from the same company will be shown at once, other jobs
         under same company are pushed to the end of the last page of search
         result.
         
        ONE_PER_COMPANY = 3;
      • TWO_PER_COMPANY

        public static final SearchJobsRequest.DiversificationLevel TWO_PER_COMPANY
         Similar to ONE_PER_COMPANY, but it allows at most two jobs in the
         same company to be shown at once, the other jobs under same company are
         pushed to the end of the last page of search result.
         
        TWO_PER_COMPANY = 4;
      • MAX_THREE_PER_COMPANY

        public static final SearchJobsRequest.DiversificationLevel MAX_THREE_PER_COMPANY
         Similar to ONE_PER_COMPANY, but it allows at most three jobs in the
         same company to be shown at once, the other jobs under same company are
         dropped.
         
        MAX_THREE_PER_COMPANY = 6;
      • DIVERSIFY_BY_LOOSER_SIMILARITY

        public static final SearchJobsRequest.DiversificationLevel DIVERSIFY_BY_LOOSER_SIMILARITY
         The result list is ordered such that somewhat similar results are pushed
         to the end of the last page of the search results. This option is
         recommended if SIMPLE diversification does not diversify enough.
         
        DIVERSIFY_BY_LOOSER_SIMILARITY = 5;
    • Field Detail

      • DIVERSIFICATION_LEVEL_UNSPECIFIED_VALUE

        public static final int DIVERSIFICATION_LEVEL_UNSPECIFIED_VALUE
         The diversification level isn't specified.
         
        DIVERSIFICATION_LEVEL_UNSPECIFIED = 0;
        See Also:
        Constant Field Values
      • DISABLED_VALUE

        public static final int DISABLED_VALUE
         Disables diversification. Jobs that would normally be pushed to the last
         page would not have their positions altered. This may result in highly
         similar jobs appearing in sequence in the search results.
         
        DISABLED = 1;
        See Also:
        Constant Field Values
      • SIMPLE_VALUE

        public static final int SIMPLE_VALUE
         Default diversifying behavior. The result list is ordered so that
         highly similar results are pushed to the end of the last page of search
         results.
         
        SIMPLE = 2;
        See Also:
        Constant Field Values
      • ONE_PER_COMPANY_VALUE

        public static final int ONE_PER_COMPANY_VALUE
         Only one job from the same company will be shown at once, other jobs
         under same company are pushed to the end of the last page of search
         result.
         
        ONE_PER_COMPANY = 3;
        See Also:
        Constant Field Values
      • TWO_PER_COMPANY_VALUE

        public static final int TWO_PER_COMPANY_VALUE
         Similar to ONE_PER_COMPANY, but it allows at most two jobs in the
         same company to be shown at once, the other jobs under same company are
         pushed to the end of the last page of search result.
         
        TWO_PER_COMPANY = 4;
        See Also:
        Constant Field Values
      • MAX_THREE_PER_COMPANY_VALUE

        public static final int MAX_THREE_PER_COMPANY_VALUE
         Similar to ONE_PER_COMPANY, but it allows at most three jobs in the
         same company to be shown at once, the other jobs under same company are
         dropped.
         
        MAX_THREE_PER_COMPANY = 6;
        See Also:
        Constant Field Values
      • DIVERSIFY_BY_LOOSER_SIMILARITY_VALUE

        public static final int DIVERSIFY_BY_LOOSER_SIMILARITY_VALUE
         The result list is ordered such that somewhat similar results are pushed
         to the end of the last page of the search results. This option is
         recommended if SIMPLE diversification does not diversify enough.
         
        DIVERSIFY_BY_LOOSER_SIMILARITY = 5;
        See Also:
        Constant Field Values
    • Method Detail

      • values

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

        public static SearchJobsRequest.DiversificationLevel 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
      • getNumber

        public final int getNumber()
        Specified by:
        getNumber in interface com.google.protobuf.Internal.EnumLite
        Specified by:
        getNumber in interface com.google.protobuf.ProtocolMessageEnum
      • valueOf

        @Deprecated
        public static SearchJobsRequest.DiversificationLevel valueOf​(int value)
        Deprecated.
        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:
        value - 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
      • forNumber

        public static SearchJobsRequest.DiversificationLevel forNumber​(int value)
        Parameters:
        value - The numeric wire value of the corresponding enum entry.
        Returns:
        The enum associated with the given numeric wire value.
      • getValueDescriptor

        public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
        Specified by:
        getValueDescriptor in interface com.google.protobuf.ProtocolMessageEnum
      • getDescriptorForType

        public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
        Specified by:
        getDescriptorForType in interface com.google.protobuf.ProtocolMessageEnum
      • getDescriptor

        public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
      • valueOf

        public static SearchJobsRequest.DiversificationLevel valueOf​(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
        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:
        desc - 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