001
002/*
003 * Copyright (C) 2010 Archie L. Cobbs. All rights reserved.
004 *
005 * $Id$
006 */
007
008package org.dellroad.jibxbindings.pidf;
009
010/**
011 * PIDF {@code <basic>} element values.
012 */
013public enum Basic {
014    OPEN("open"),
015    CLOSED("closed");
016
017    private final String xmlValue;
018
019    private Basic(String xmlValue) {
020        this.xmlValue = xmlValue;
021    }
022
023    public final String getXMLValue() {
024        return this.xmlValue;
025    }
026}
027