public class GAV extends Object
| Modifier and Type | Class and Description |
|---|---|
static class |
GAV.Builder |
static class |
GAV.Exclusion |
| Constructor and Description |
|---|
GAV(String groupId,
String artifactId,
String version,
boolean optional) |
GAV(String groupId,
String artifactId,
String version,
String type,
boolean optional) |
GAV(String groupId,
String artifactId,
String version,
String type,
String classifier,
boolean optional) |
GAV(String groupId,
String artifactId,
String version,
String type,
String classifier,
boolean optional,
List<GAV.Exclusion> exclusions) |
| Modifier and Type | Method and Description |
|---|---|
static GAV.Builder |
builder() |
boolean |
equals(Object o) |
String |
getArtifactId() |
String |
getClassifier() |
List<GAV.Exclusion> |
getExclusions() |
String |
getGroupId() |
String |
getType() |
String |
getVersion() |
int |
hashCode() |
boolean |
isOptional() |
static GAV |
parse(String gav) |
String |
toParseableString()
toString() will only generate simple GAV whereas toParseableString()
should generate a String that should return the same GAV content when parsed
through GAV.parse()
|
String |
toString() |
public GAV(String groupId, String artifactId, String version, String type, String classifier, boolean optional)
public String getGroupId()
public String getArtifactId()
public String getVersion()
public String getType()
public String getClassifier()
public boolean isOptional()
public List<GAV.Exclusion> getExclusions()
public String toParseableString()
public static GAV.Builder builder()
Copyright © 2017. All Rights Reserved.