@Gw2ApiVersion(value="v1") public interface Item
Represents details of an in-game item as is returned by /v1/item_details.
Modifier and Type | Method and Description |
---|---|
ArmorItemProperties |
getArmor() |
BagItemProperties |
getBag() |
ConsumableItemProperties |
getConsumable() |
ContainerItemProperties |
getContainer() |
String |
getDescription()
The in-game description of the item, if one exists.
|
List<String> |
getFlags()
A list of flags that detail extra properties of the item.
|
List<String> |
getGameTypes()
A list of the game modes where the item can be used.
|
GizmoItemProperties |
getGizmo() |
Integer |
getIconFileId()
|
Integer |
getLevel()
The character level required to be able to use this item.
|
String |
getName()
The in-game name of the item.
|
String |
getRarity()
The in-game rarity level of the item.
|
List<String> |
getRestrictions()
A list of races or classes that are able to use the item.
|
TrinketItemProperties |
getTrinket() |
String |
getType()
The specific kind of item.
|
UpgradeComponentItemProperties |
getUpgradeComponent() |
Coins |
getVendorValue()
The amount of in-game currency for which the item can be sold to a vendor.
|
WeaponItemProperties |
getWeapon() |
Integer getItemId()
String getName()
String getDescription()
String getType()
The specific kind of item. Possible values are:
Each of these types is represented by it's on POJO that is an
implementation of Item
. Each POJO is
named in the format TypeItem
. For example, an "Armor" item is
represented by the ArmorItem
object.
Integer getLevel()
String getRarity()
The in-game rarity level of the item. The possible values are:
Coins getVendorValue()
Coins
.Integer getIconFileId()
String getIconFileSignature()
List<String> getGameTypes()
A list of the game modes where the item can be used. The possible values are:
List<String> getFlags()
A list of flags that detail extra properties of the item. Possible values are:
List<String> getRestrictions()
A list of races or classes that are able to use the item. The possible values are:
ArmorItemProperties getArmor()
BagItemProperties getBag()
ConsumableItemProperties getConsumable()
ContainerItemProperties getContainer()
GizmoItemProperties getGizmo()
TrinketItemProperties getTrinket()
UpgradeComponentItemProperties getUpgradeComponent()
WeaponItemProperties getWeapon()
Copyright © 2014. All Rights Reserved.