com.anwen.mongo.enums.IndexDirection Maven / Gradle / Ivy
package com.anwen.mongo.enums;
/**
* @author anwen
*/
public enum IndexDirection {
ASC(1),
DESC(-1)
;
private final Integer value;
public Integer getValue() {
return value;
}
IndexDirection(Integer value) {
this.value = value;
}
}