| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<TextCheckResult>
org.eclipse.actf.visualization.engines.blind.TextCheckResult
public enum TextCheckResult
| Enum Constant Summary | |
|---|---|
| ASCII_ARTContains a lot of space characters and graphical symbols. | |
| BLANKFlag means ALT is not null, but contains only blank characters. | |
| BLANK_NBSPFlag means ALT is not null, contains only blank characters and contains one or more characters. | |
| IMG_EXTFlag means ALT string ends with the extension that is used for images. | |
| INCLUDING_MANY_NG_WORDFlag means ALT string contains many NG words within it (ratio is greater than 0.6). | |
| INCLUDING_NG_WORDFlag means ALT string contains several NG words within it (ratio is between 0.3 and 0.6). | |
| NG_WORDFlag means entire ALT string matches one of the NG words. | |
| NULLFlag means ALT is null string (""). | |
| OKFlag that means ALT may be OK. | |
| SAME_AS_SRCFlag means ALT string is equal to src attribute value. | |
| SPACE_SEPARATEDFlag means ALT string is separated by in-word space characters, e.g. | |
| SPACE_SEPARATED_JPFlag means ALT string is Japanese and separated by in-word space characters, e.g. | |
| Method Summary | |
|---|---|
| static TextCheckResult | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static TextCheckResult[] | values()Returns an array containing the constants of this enum type, in the order they are declared. | 
| Methods inherited from class java.lang.Enum | 
|---|
| compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf | 
| Methods inherited from class java.lang.Object | 
|---|
| getClass, notify, notifyAll, wait, wait, wait | 
| Enum Constant Detail | 
|---|
public static final TextCheckResult OK
public static final TextCheckResult NULL
public static final TextCheckResult BLANK
public static final TextCheckResult BLANK_NBSP
public static final TextCheckResult NG_WORD
public static final TextCheckResult IMG_EXT
public static final TextCheckResult SAME_AS_SRC
public static final TextCheckResult SPACE_SEPARATED
public static final TextCheckResult SPACE_SEPARATED_JP
public static final TextCheckResult ASCII_ART
public static final TextCheckResult INCLUDING_MANY_NG_WORD
public static final TextCheckResult INCLUDING_NG_WORD
| Method Detail | 
|---|
public static TextCheckResult[] values()
for (TextCheckResult c : TextCheckResult.values()) System.out.println(c);
public static TextCheckResult valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||