public enum MetadataType extends Enum<MetadataType>
Determines from where result document will take metadata information
Enum Constant and Description |
---|
DEFAULT
Default
|
FILE_AUTHOR
Metadata sets by user
|
SOURCE
Metedata takes from source document
|
TARGET
Metadata takes from target document
|
Modifier and Type | Method and Description |
---|---|
static MetadataType |
fromString(String toStringValue) |
String |
toString() |
static MetadataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MetadataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MetadataType DEFAULT
Default
public static final MetadataType FILE_AUTHOR
Metadata sets by user
public static final MetadataType SOURCE
Metedata takes from source document
public static final MetadataType TARGET
Metadata takes from target document
public static MetadataType fromString(String toStringValue)
public String toString()
toString
in class Enum<MetadataType>
public static MetadataType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static MetadataType[] values()
for (MetadataType c : MetadataType.values()) System.out.println(c);
Copyright © 2023. All rights reserved.