com.alphasystem.docbook.model.Admonition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docbook-2-docx Show documentation
Show all versions of docbook-2-docx Show documentation
Alpha system commons library
The newest version!
package com.alphasystem.docbook.model;
/**
* @author sali
*/
public enum Admonition {
CAUTION("Caution"), IMPORTANT("Important"), NOTE("Note"), TIP("Tip"), WARNING("Warning");
private final String value;
Admonition(String value) {
this.value = value;
}
public String getValue() {
return value;
}
}