com.davidbracewell.HierarchicalEnumValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mango Show documentation
Show all versions of mango Show documentation
A set of utilities and tools to speed up and ease programming in Java.
/*
* (c) 2005 David B. Bracewell
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package com.davidbracewell;
import java.util.List;
/**
* The type Hierarchical enum value.
*
* @author David B. Bracewell
*/
public abstract class HierarchicalEnumValue extends EnumValue {
private static final long serialVersionUID = 1L;
/**
* The Parent.
*/
protected volatile HierarchicalEnumValue parent = null;
/**
* Instantiates a new Enum value.
*
* @param name the name of the enum value
*/
protected HierarchicalEnumValue(String name) {
super(name);
}
/**
* Instantiates a new Hierarchical enum value.
*
* @param name the name
* @param parent the parent
*/
protected HierarchicalEnumValue(String name, HierarchicalEnumValue parent) {
super(name);
this.parent = parent;
}
/**
* Determines if this enum is the root
*
* @return True if it is the root, False otherwise
*/
public boolean isRoot() {
return getParent() == null;
}
/**
* Gets children.
*
* @param the type parameter
* @return the children
*/
public abstract List getChildren();
/**
* Is leaf boolean.
*
* @return the boolean
*/
public boolean isLeaf() {
return getChildren().isEmpty();
}
/**
* Gets parent.
*
* @return the parent
*/
public HierarchicalEnumValue getParent() {
if (parent == null) {
synchronized (this) {
if (parent == null) {
parent = getParentConfig();
}
}
}
return parent;
}
@Override
public boolean isInstance(Tag value) {
if (value == null) {
return false;
}
HierarchicalEnumValue hev = this;
while (hev != null && hev != hev.getParent()) {
if (hev.equals(value)) {
return true;
}
hev = hev.getParent();
}
return false;
}
/**
* Gets parent config.
*
* @return the parent config
*/
protected abstract HierarchicalEnumValue getParentConfig();
}//END OF HierarchicalEnumValue
© 2015 - 2025 Weber Informatics LLC | Privacy Policy