All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dihedron.patterns.visitor.VisitMode Maven / Gradle / Ivy

Go to download

Base set of functionalities, including simple utility classes and more complex patterns.

The newest version!
/**
 * Copyright (c) 2012-2014, Andrea Funto'. All rights reserved. See LICENSE for details.
 */ 
package org.dihedron.patterns.visitor;

import org.dihedron.core.License;

/**
 * An enumeration representing whether the object properties must be accessed
 * in read only mode or in read/write mode.
 *  
 * @author Andrea Funto'
 */
@License
public enum VisitMode {
	
	/**
	 * The sub-nodes will be accessed in read-only mode.
	 */
	READ_ONLY,
	
	/**
	 * The sub-nodes will be accessed in read and write mode.
	 */
	READ_WRITE
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy