PrkAttribute.java :  » XML » pirka » org » pirkaengine » core » Java Open Source

Java Open Source » XML » pirka 
pirka » org » pirkaengine » core » PrkAttribute.java
package org.pirkaengine.core;

/**
 * prk.
 * 
 * @author shuji.w6e
 * @since 0.1.0
 */
public enum PrkAttribute {
    
    /** prk:content */
    CONTENT("content"),
    /** prk:attr */
    ATTR("attr"),
    /** prk:path */
    PATH("path"),
    /** prk:replace */
    REPLACE("replace"),
    /** prk:wrap */
    WRAP("wrap"),
    /** prk:stub */
    STUB("stub"),
    /** prk:debug */
    DEBUG("debug"),
    /** prk:if */
    IF("if"),
    /** prk:if.not */
    IF_NOT("if.not"),
    /** prk:if.empty */
    IF_EMPTY("if.empty"),
    /** prk:if.not.empty */
    IF_NOT_EMPTY("if.not.empty"),
    /** prk:for */
    FOR("for"),
    /** prk:repeat */
    REPEAT("repeat"),
    /** prk:extends */
    EXTENDS("extends"),
    /** prk:block */
    BLOCK("block");

    /**  */
    public final String name;
    /**  */
    public final String qualifiedName;

    private PrkAttribute(String name) {
        this.name = name;
        this.qualifiedName = PrkNameSpace.PREFIX + ":" + name;
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.