-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Form recognizer] Fix Javadoc improvements JDK 20 #36700
Conversation
API change check APIView has identified API level changes in this PR and created following API reviews. |
/** | ||
* Creates or finds a ContentSourceKind from its string representation. | ||
*/ | ||
public ContentSourceKind() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since this is an ExpandableStringEnum
this will need to be marked as deprecated and tell users to use the factory method.
/** | ||
* Creates a DocumentModelBuildMode object. | ||
*/ | ||
public DocumentModelBuildMode() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since this is an ExpandableStringEnum
this will need to be marked as deprecated and tell users to use the factory method.
/** | ||
* Creates a OperationKind object. | ||
*/ | ||
public OperationKind() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since this is an ExpandableStringEnum
this will need to be marked as deprecated and tell users to use the factory method.
/** | ||
* Creates a OperationStatus object. | ||
*/ | ||
public OperationStatus() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since this is an ExpandableStringEnum
this will need to be marked as deprecated and tell users to use the factory method.
/** | ||
* Constructs a DocumentAnalysisAudience object. | ||
*/ | ||
public DocumentAnalysisAudience() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since this is an ExpandableStringEnum
this will need to be marked as deprecated and tell users to use the factory method.
/** | ||
* Creates a FormRecognizerAudience object. | ||
*/ | ||
public FormRecognizerAudience() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since this is an ExpandableStringEnum
this will need to be marked as deprecated and tell users to use the factory method.
/** | ||
* Creates a FormRecognizerLanguage object. | ||
*/ | ||
public FormRecognizerLanguage() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since this is an ExpandableStringEnum
this will need to be marked as deprecated and tell users to use the factory method.
/** | ||
* Creates a FormRecognizerLocale object. | ||
*/ | ||
public FormRecognizerLocale() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since this is an ExpandableStringEnum
this will need to be marked as deprecated and tell users to use the factory method.
/** | ||
* Constructs a SelectionMarkState object. | ||
*/ | ||
public SelectionMarkState() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since this is an ExpandableStringEnum
this will need to be marked as deprecated and tell users to use the factory method.
/** | ||
* Constructs a TextStyleName object | ||
*/ | ||
public TextStyleName() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since this is an ExpandableStringEnum
this will need to be marked as deprecated and tell users to use the factory method.
No description provided.