Package org.eclipse.jgit.attributes
Class Attribute
- java.lang.Object
-
- org.eclipse.jgit.attributes.Attribute
-
public final class Attribute extends java.lang.ObjectRepresents an attribute.According to the man page, an attribute can have the following states:
- Set - represented by
Attribute.State.SET - Unset - represented by
Attribute.State.UNSET - Set to a value - represented by
Attribute.State.CUSTOM - Unspecified -
nullis used instead of an instance of this class
- Since:
- 3.7
- Set - represented by
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAttribute.StateThe attribute value state
-
Constructor Summary
Constructors Constructor Description Attribute(java.lang.String key, java.lang.String value)Creates a new instance.Attribute(java.lang.String key, Attribute.State state)Creates a new instance
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.lang.StringgetKey()Attribute.StategetState()Returns the state.java.lang.StringgetValue()inthashCode()java.lang.StringtoString()
-
-
-
Constructor Detail
-
Attribute
public Attribute(java.lang.String key, Attribute.State state)Creates a new instance- Parameters:
key- the attribute key. Should not benull.state- the attribute state. It should be eitherAttribute.State.SETorAttribute.State.UNSET. In order to create a custom value attribute prefer the use ofAttribute(String, String)constructor.
-
Attribute
public Attribute(java.lang.String key, java.lang.String value)Creates a new instance.- Parameters:
key- the attribute key. Should not benull.value- the custom attribute value
-
-
Method Detail
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
getKey
public java.lang.String getKey()
- Returns:
- the attribute key (never returns
null)
-
getState
public Attribute.State getState()
Returns the state.- Returns:
- the state (never returns
null)
-
getValue
public java.lang.String getValue()
- Returns:
- the attribute value (may be
null)
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-