Enum DIFField.Filter.Type
- java.lang.Object
-
- java.lang.Enum<DIFField.Filter.Type>
-
- org.hyperledger.aries.api.present_proof_v2.DIFField.Filter.Type
-
- All Implemented Interfaces:
Serializable,Comparable<DIFField.Filter.Type>
- Enclosing class:
- DIFField.Filter
public static enum DIFField.Filter.Type extends Enum<DIFField.Filter.Type>
JSON schema type- See Also:
- rfc.section.6.1.1
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DIFField.Filter.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static DIFField.Filter.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NULL
@SerializedName("null") public static final DIFField.Filter.Type NULL
-
BOOLEAN
@SerializedName("boolean") public static final DIFField.Filter.Type BOOLEAN
-
OBJECT
@SerializedName("object") public static final DIFField.Filter.Type OBJECT
-
ARRAY
@SerializedName("array") public static final DIFField.Filter.Type ARRAY
-
NUMBER
@SerializedName("number") public static final DIFField.Filter.Type NUMBER
-
STRING
@SerializedName("string") public static final DIFField.Filter.Type STRING
-
INTEGER
@SerializedName("integer") public static final DIFField.Filter.Type INTEGER
-
-
Method Detail
-
values
public static DIFField.Filter.Type[] 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 (DIFField.Filter.Type c : DIFField.Filter.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DIFField.Filter.Type valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-