public class Paths extends Object implements Serializable, Cloneable
| Constructor and Description |
|---|
Paths() |
| Modifier and Type | Method and Description |
|---|---|
Paths |
clone() |
boolean |
equals(Object obj) |
List<String> |
getItems()
A complex type that contains a list of the objects that you want to invalidate.
|
Integer |
getQuantity()
The number of objects that you want to invalidate.
|
int |
hashCode() |
void |
setItems(Collection<String> items)
A complex type that contains a list of the objects that you want to invalidate.
|
void |
setQuantity(Integer quantity)
The number of objects that you want to invalidate.
|
String |
toString()
Returns a string representation of this object; useful for testing and debugging.
|
Paths |
withItems(Collection<String> items)
A complex type that contains a list of the objects that you want to invalidate.
|
Paths |
withItems(String... items)
A complex type that contains a list of the objects that you want to invalidate.
|
Paths |
withQuantity(Integer quantity)
The number of objects that you want to invalidate.
|
public void setQuantity(Integer quantity)
quantity - The number of objects that you want to invalidate.public Integer getQuantity()
public Paths withQuantity(Integer quantity)
quantity - The number of objects that you want to invalidate.public List<String> getItems()
public void setItems(Collection<String> items)
items - A complex type that contains a list of the objects that you want to invalidate.public Paths withItems(String... items)
NOTE: This method appends the values to the existing list (if any). Use
setItems(java.util.Collection) or withItems(java.util.Collection) if you want to override the
existing values.
items - A complex type that contains a list of the objects that you want to invalidate.public Paths withItems(Collection<String> items)
items - A complex type that contains a list of the objects that you want to invalidate.public String toString()
toString in class ObjectObject.toString()Copyright © 2016. All rights reserved.