public class FieldSerializationResult extends Object
Represents the result of a form field serialization process.
Constructor and Description |
---|
FieldSerializationResult()
Initializes a new instance of the
FieldSerializationResult class. |
FieldSerializationResult(String fieldName)
Initializes a new instance of the
FieldSerializationResult class with the specified field name. |
Modifier and Type | Method and Description |
---|---|
HashSet<String> |
getErrorMessages()
Gets the error messages associated with the serialization process.
|
String |
getFieldFullName()
Gets the full name of the field.
|
int |
getFieldSerializationStatus()
Gets the status of the form field serialization.
|
HashSet<String> |
getWarningMessages()
Gets the warning messages associated with the serialization process.
|
void |
updateStatus(int status,
String message)
Updates the serialization status and adds a message to the appropriate set.
|
public FieldSerializationResult()
Initializes a new instance of the FieldSerializationResult
class.
public FieldSerializationResult(String fieldName)
Initializes a new instance of the FieldSerializationResult
class with the specified field name.
fieldName
- The full name of the field.public final int getFieldSerializationStatus()
Gets the status of the form field serialization.
Value: The serialization status of the form field.public final String getFieldFullName()
Gets the full name of the field.
Value: The full name of the field.public final HashSet<String> getWarningMessages()
Gets the warning messages associated with the serialization process.
Value: A set of warning messages.public final HashSet<String> getErrorMessages()
Gets the error messages associated with the serialization process.
Value: A set of error messages.public final void updateStatus(int status, String message)
Updates the serialization status and adds a message to the appropriate set.
status
- The new status of the form field serialization.message
- The message to add to the appropriate message set.Copyright © 2025 Aspose. All Rights Reserved.