Package org.accellera.IPXACT_1685_2014
Enum ModifiedWriteValueType
- java.lang.Object
-
- java.lang.Enum<ModifiedWriteValueType>
-
- org.accellera.IPXACT_1685_2014.ModifiedWriteValueType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ModifiedWriteValueType>
@Generated(value="com.sun.tools.xjc.Driver", comments="JAXB RI v3.0.2", date="2026-01-14T04:58:49Z") public enum ModifiedWriteValueType extends java.lang.Enum<ModifiedWriteValueType>Java class for modifiedWriteValueType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="modifiedWriteValueType"> <restriction base="{http://www.w3.org/2001/XMLSchema}Name"> <enumeration value="oneToClear"/> <enumeration value="oneToSet"/> <enumeration value="oneToToggle"/> <enumeration value="zeroToClear"/> <enumeration value="zeroToSet"/> <enumeration value="zeroToToggle"/> <enumeration value="clear"/> <enumeration value="set"/> <enumeration value="modify"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLEARMODIFYONE_TO_CLEARONE_TO_SETONE_TO_TOGGLESETZERO_TO_CLEARZERO_TO_SETZERO_TO_TOGGLE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ModifiedWriteValueTypefromValue(java.lang.String v)java.lang.Stringvalue()static ModifiedWriteValueTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ModifiedWriteValueType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ONE_TO_CLEAR
public static final ModifiedWriteValueType ONE_TO_CLEAR
-
ONE_TO_SET
public static final ModifiedWriteValueType ONE_TO_SET
-
ONE_TO_TOGGLE
public static final ModifiedWriteValueType ONE_TO_TOGGLE
-
ZERO_TO_CLEAR
public static final ModifiedWriteValueType ZERO_TO_CLEAR
-
ZERO_TO_SET
public static final ModifiedWriteValueType ZERO_TO_SET
-
ZERO_TO_TOGGLE
public static final ModifiedWriteValueType ZERO_TO_TOGGLE
-
CLEAR
public static final ModifiedWriteValueType CLEAR
-
SET
public static final ModifiedWriteValueType SET
-
MODIFY
public static final ModifiedWriteValueType MODIFY
-
-
Method Detail
-
values
public static ModifiedWriteValueType[] 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 (ModifiedWriteValueType c : ModifiedWriteValueType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ModifiedWriteValueType 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
-
value
public java.lang.String value()
-
fromValue
public static ModifiedWriteValueType fromValue(java.lang.String v)
-
-