Package org.eclipse.tycho.p2.repository
Class GAV
- java.lang.Object
-
- org.eclipse.tycho.p2.repository.GAV
-
public class GAV extends Object
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getArtifactId()
String
getGroupId()
String
getVersion()
int
hashCode()
static GAV
parse(String line)
Parse a line in the form "g:a:v"String
toExternalForm()
String
toString()
-
-
-
Method Detail
-
getGroupId
public String getGroupId()
-
getArtifactId
public String getArtifactId()
-
getVersion
public String getVersion()
-
toExternalForm
public String toExternalForm()
-
parse
public static GAV parse(String line) throws IllegalArgumentException
Parse a line in the form "g:a:v"- Throws:
IllegalArgumentException
- if line is not well-formed
-
-