All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.datahub.client.model.ExpandMode Maven / Gradle / Ivy

The newest version!
package com.aliyun.datahub.client.model;

import com.fasterxml.jackson.annotation.JsonValue;

public enum ExpandMode {
    /**
     * default expand mode, allow split/merge/extend shard
     */
    SPLIT_EXTEND(""),

    /**
     * only allow split/merge shard
     */
    ONLY_SPLIT("split"),

    /**
     * only allow extend shard, adopt to kafka api
     */
    ONLY_EXTEND("extend");

    private final String value;

    ExpandMode(final String description) {
        this.value = description;
    }

    @JsonValue
    final String value() {
        return this.value;

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy