Package com.google.cloud.talent.v4beta1
Interface Job.ApplicationInfoOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Job.ApplicationInfo
,Job.ApplicationInfo.Builder
- Enclosing class:
- Job
public static interface Job.ApplicationInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getEmails(int index)
Use this field to specify email address(es) to which resumes or applications can be sent.com.google.protobuf.ByteString
getEmailsBytes(int index)
Use this field to specify email address(es) to which resumes or applications can be sent.int
getEmailsCount()
Use this field to specify email address(es) to which resumes or applications can be sent.List<String>
getEmailsList()
Use this field to specify email address(es) to which resumes or applications can be sent.String
getInstruction()
Use this field to provide instructions, such as "Mail your application to ...", that a candidate can follow to apply for the job.com.google.protobuf.ByteString
getInstructionBytes()
Use this field to provide instructions, such as "Mail your application to ...", that a candidate can follow to apply for the job.String
getUris(int index)
Use this URI field to direct an applicant to a website, for example to link to an online application form.com.google.protobuf.ByteString
getUrisBytes(int index)
Use this URI field to direct an applicant to a website, for example to link to an online application form.int
getUrisCount()
Use this URI field to direct an applicant to a website, for example to link to an online application form.List<String>
getUrisList()
Use this URI field to direct an applicant to a website, for example to link to an online application form.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getEmailsList
List<String> getEmailsList()
Use this field to specify email address(es) to which resumes or applications can be sent. The maximum number of allowed characters for each entry is 255.
repeated string emails = 1;
- Returns:
- A list containing the emails.
-
getEmailsCount
int getEmailsCount()
Use this field to specify email address(es) to which resumes or applications can be sent. The maximum number of allowed characters for each entry is 255.
repeated string emails = 1;
- Returns:
- The count of emails.
-
getEmails
String getEmails(int index)
Use this field to specify email address(es) to which resumes or applications can be sent. The maximum number of allowed characters for each entry is 255.
repeated string emails = 1;
- Parameters:
index
- The index of the element to return.- Returns:
- The emails at the given index.
-
getEmailsBytes
com.google.protobuf.ByteString getEmailsBytes(int index)
Use this field to specify email address(es) to which resumes or applications can be sent. The maximum number of allowed characters for each entry is 255.
repeated string emails = 1;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the emails at the given index.
-
getInstruction
String getInstruction()
Use this field to provide instructions, such as "Mail your application to ...", that a candidate can follow to apply for the job. This field accepts and sanitizes HTML input, and also accepts bold, italic, ordered list, and unordered list markup tags. The maximum number of allowed characters is 3,000.
string instruction = 2;
- Returns:
- The instruction.
-
getInstructionBytes
com.google.protobuf.ByteString getInstructionBytes()
Use this field to provide instructions, such as "Mail your application to ...", that a candidate can follow to apply for the job. This field accepts and sanitizes HTML input, and also accepts bold, italic, ordered list, and unordered list markup tags. The maximum number of allowed characters is 3,000.
string instruction = 2;
- Returns:
- The bytes for instruction.
-
getUrisList
List<String> getUrisList()
Use this URI field to direct an applicant to a website, for example to link to an online application form. The maximum number of allowed characters for each entry is 2,000.
repeated string uris = 3;
- Returns:
- A list containing the uris.
-
getUrisCount
int getUrisCount()
Use this URI field to direct an applicant to a website, for example to link to an online application form. The maximum number of allowed characters for each entry is 2,000.
repeated string uris = 3;
- Returns:
- The count of uris.
-
getUris
String getUris(int index)
Use this URI field to direct an applicant to a website, for example to link to an online application form. The maximum number of allowed characters for each entry is 2,000.
repeated string uris = 3;
- Parameters:
index
- The index of the element to return.- Returns:
- The uris at the given index.
-
getUrisBytes
com.google.protobuf.ByteString getUrisBytes(int index)
Use this URI field to direct an applicant to a website, for example to link to an online application form. The maximum number of allowed characters for each entry is 2,000.
repeated string uris = 3;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the uris at the given index.
-
-