1 package org.sonatype.aether.version; 2 3 /******************************************************************************* 4 * Copyright (c) 2010-2011 Sonatype, Inc. 5 * All rights reserved. This program and the accompanying materials 6 * are made available under the terms of the Eclipse Public License v1.0 7 * which accompanies this distribution, and is available at 8 * http://www.eclipse.org/legal/epl-v10.html 9 *******************************************************************************/ 10 11 /** 12 * A parsed artifact version. 13 * 14 * @author Benjamin Bentmann 15 */ 16 public interface Version 17 extends Comparable<Version> 18 { 19 20 /** 21 * Gets the original string representation of the version. 22 * 23 * @return The string representation of the version. 24 */ 25 String toString(); 26 27 }