Package io.lakefs.clients.api.model
Class RangeMetadata
- java.lang.Object
-
- io.lakefs.clients.api.model.RangeMetadata
-
@Generated("org.openapitools.codegen.languages.JavaClientCodegen") public class RangeMetadata extends ObjectRangeMetadata
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_COUNTstatic StringSERIALIZED_NAME_ESTIMATED_SIZEstatic StringSERIALIZED_NAME_IDstatic StringSERIALIZED_NAME_MAX_KEYstatic StringSERIALIZED_NAME_MIN_KEY
-
Constructor Summary
Constructors Constructor Description RangeMetadata()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RangeMetadatacount(Integer count)booleanequals(Object o)RangeMetadataestimatedSize(Integer estimatedSize)IntegergetCount()Number of records in the range.IntegergetEstimatedSize()Estimated size of the range in bytesStringgetId()ID of the range.StringgetMaxKey()Last key in the range.StringgetMinKey()First key in the range.inthashCode()RangeMetadataid(String id)RangeMetadatamaxKey(String maxKey)RangeMetadataminKey(String minKey)voidsetCount(Integer count)voidsetEstimatedSize(Integer estimatedSize)voidsetId(String id)voidsetMaxKey(String maxKey)voidsetMinKey(String minKey)StringtoString()
-
-
-
Field Detail
-
SERIALIZED_NAME_ID
public static final String SERIALIZED_NAME_ID
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_MIN_KEY
public static final String SERIALIZED_NAME_MIN_KEY
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_MAX_KEY
public static final String SERIALIZED_NAME_MAX_KEY
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_COUNT
public static final String SERIALIZED_NAME_COUNT
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_ESTIMATED_SIZE
public static final String SERIALIZED_NAME_ESTIMATED_SIZE
- See Also:
- Constant Field Values
-
-
Method Detail
-
id
public RangeMetadata id(String id)
-
getId
@Nonnull public String getId()
ID of the range.- Returns:
- id
-
setId
public void setId(String id)
-
minKey
public RangeMetadata minKey(String minKey)
-
getMinKey
@Nonnull public String getMinKey()
First key in the range.- Returns:
- minKey
-
setMinKey
public void setMinKey(String minKey)
-
maxKey
public RangeMetadata maxKey(String maxKey)
-
getMaxKey
@Nonnull public String getMaxKey()
Last key in the range.- Returns:
- maxKey
-
setMaxKey
public void setMaxKey(String maxKey)
-
count
public RangeMetadata count(Integer count)
-
getCount
@Nonnull public Integer getCount()
Number of records in the range.- Returns:
- count
-
setCount
public void setCount(Integer count)
-
estimatedSize
public RangeMetadata estimatedSize(Integer estimatedSize)
-
getEstimatedSize
@Nonnull public Integer getEstimatedSize()
Estimated size of the range in bytes- Returns:
- estimatedSize
-
setEstimatedSize
public void setEstimatedSize(Integer estimatedSize)
-
-