This commit is contained in:
crusader 2018-06-11 23:30:01 +09:00
parent d80635dd57
commit 92371d6df5
2 changed files with 5 additions and 1 deletions

View File

@ -13,7 +13,7 @@
<groupId>com.loafle.overflow</groupId> <groupId>com.loafle.overflow</groupId>
<artifactId>commons-java</artifactId> <artifactId>commons-java</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>1.0.41-SNAPSHOT</version> <version>1.0.42-SNAPSHOT</version>
<name>com.loafle.overflow.commons-java</name> <name>com.loafle.overflow.commons-java</name>
<properties> <properties>

View File

@ -68,6 +68,10 @@ public class MetaIPType {
this.value = value; this.value = value;
} }
public Short getValue() {
return this.value;
}
public MetaIPType to() { public MetaIPType to() {
return new MetaIPType(this.value); return new MetaIPType(this.value);
} }