Enum AHOOXMLDocxManagerErrorCode
- java.lang.Object
-
- java.lang.Enum<AHOOXMLDocxManagerErrorCode>
-
- jp.co.antenna.AHOOXMLDocxManagerJavaCtl.AHOOXMLDocxManagerErrorCode
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<AHOOXMLDocxManagerErrorCode>
public enum AHOOXMLDocxManagerErrorCode extends java.lang.Enum<AHOOXMLDocxManagerErrorCode>
Error code- Version:
- 1.0 2021/09/29
- Author:
- Copyright (c) 2020-2022 Antenna House, Inc. All rights reserved.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AHOOXMLDocxManagerErrorCode
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AHOOXMLDocxManagerErrorCode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WAPI_SUCCESS
public static final AHOOXMLDocxManagerErrorCode WAPI_SUCCESS
-
WAPI_CANNOT_LOAD_FILE
public static final AHOOXMLDocxManagerErrorCode WAPI_CANNOT_LOAD_FILE
-
WAPI_INVALID_FILE
public static final AHOOXMLDocxManagerErrorCode WAPI_INVALID_FILE
-
WAPI_NO_MERGE_DATA
public static final AHOOXMLDocxManagerErrorCode WAPI_NO_MERGE_DATA
-
WAPI_LINKING_KEY_ISNT_SET
public static final AHOOXMLDocxManagerErrorCode WAPI_LINKING_KEY_ISNT_SET
-
WAPI_NO_LINKING_KEY
public static final AHOOXMLDocxManagerErrorCode WAPI_NO_LINKING_KEY
-
WAPI_CANNOT_FIND_DIR
public static final AHOOXMLDocxManagerErrorCode WAPI_CANNOT_FIND_DIR
-
WAPI_WRITING_ERROR
public static final AHOOXMLDocxManagerErrorCode WAPI_WRITING_ERROR
-
WAPI_ISNT_LOCAL_FILE
public static final AHOOXMLDocxManagerErrorCode WAPI_ISNT_LOCAL_FILE
-
WAPI_UNSUPPORTED_IMAGE_FILE
public static final AHOOXMLDocxManagerErrorCode WAPI_UNSUPPORTED_IMAGE_FILE
-
WAPI_EXPIRE_EVALUATION
public static final AHOOXMLDocxManagerErrorCode WAPI_EXPIRE_EVALUATION
-
WAPI_CANNOT_LOAD_LICFILE
public static final AHOOXMLDocxManagerErrorCode WAPI_CANNOT_LOAD_LICFILE
-
WAPI_INVALID_LICFILE
public static final AHOOXMLDocxManagerErrorCode WAPI_INVALID_LICFILE
-
WAPI_INVALID_OUTPUT
public static final AHOOXMLDocxManagerErrorCode WAPI_INVALID_OUTPUT
-
-
Method Detail
-
values
public static AHOOXMLDocxManagerErrorCode[] 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 (AHOOXMLDocxManagerErrorCode c : AHOOXMLDocxManagerErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AHOOXMLDocxManagerErrorCode 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 namejava.lang.NullPointerException
- if the argument is null
-
-