Package jetbrains.buildServer.serverSide
Class DataItem
- java.lang.Object
-
- jetbrains.buildServer.serverSide.DataItem
-
public class DataItem extends Object
Represents some project data item, seeProjectDataFetcher
.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
Map<String,String>
getAttributes()
String
getDetails()
String
getValue()
int
hashCode()
-
-
-
Constructor Detail
-
DataItem
public DataItem(@NotNull String value, @Nullable String details)
Creates new data item.- Parameters:
value
- value to be used if this item is selecteddetails
- some additional details for the item (optional)
-
DataItem
public DataItem(@NotNull String value, @Nullable String details, @Nullable Map<String,String> attributes)
Creates new data item with optional additional attributes.- Parameters:
value
- value to be used if this item is selecteddetails
- some additional details for the item (optional)attributes
- additional attributes associated with data item
-
-