Enum MethodWorry
- java.lang.Object
-
- java.lang.Enum<MethodWorry>
-
- org.dddjava.jig.domain.model.models.jigobject.member.MethodWorry
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<MethodWorry>
public enum MethodWorry extends java.lang.Enum<MethodWorry>
メソッドの気になるところ
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NULLリテラルを使用しているNULL判定をしているStreamAPIを使用しているvoidを返しているメンバを使用していない基本型の授受を行なっている真偽値を返している
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MethodWorryvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static MethodWorry[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
メンバを使用していない
public static final MethodWorry メンバを使用していない
-
基本型の授受を行なっている
public static final MethodWorry 基本型の授受を行なっている
-
NULLリテラルを使用している
public static final MethodWorry NULLリテラルを使用している
-
NULL判定をしている
public static final MethodWorry NULL判定をしている
-
真偽値を返している
public static final MethodWorry 真偽値を返している
-
StreamAPIを使用している
public static final MethodWorry StreamAPIを使用している
-
voidを返している
public static final MethodWorry voidを返している
-
-
Method Detail
-
values
public static MethodWorry[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MethodWorry c : MethodWorry.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MethodWorry valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-