com.github.gv2011.m2t.Scope Maven / Gradle / Ivy
The newest version!
package com.github.gv2011.m2t;
import com.github.gv2011.util.StringUtils;
public enum Scope {
COMPILE, RUNTIME;
@Override
public String toString(){return StringUtils.toLowerCase(name());}
}