Enum EntityField.Visibility
- java.lang.Object
-
- java.lang.Enum<EntityField.Visibility>
-
- io.quarkus.panache.common.deployment.EntityField.Visibility
-
- All Implemented Interfaces:
Serializable,Comparable<EntityField.Visibility>
- Enclosing class:
- EntityField
public static enum EntityField.Visibility extends Enum<EntityField.Visibility>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PACKAGE_PRIVATEPRIVATEPROTECTEDPUBLIC
-
Field Summary
Fields Modifier and Type Field Description intaccessOpCode
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EntityField.Visibilityget(int flags)static EntityField.VisibilityvalueOf(String name)Returns the enum constant of this type with the specified name.static EntityField.Visibility[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PUBLIC
public static final EntityField.Visibility PUBLIC
-
PROTECTED
public static final EntityField.Visibility PROTECTED
-
PACKAGE_PRIVATE
public static final EntityField.Visibility PACKAGE_PRIVATE
-
PRIVATE
public static final EntityField.Visibility PRIVATE
-
-
Method Detail
-
values
public static EntityField.Visibility[] 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 (EntityField.Visibility c : EntityField.Visibility.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EntityField.Visibility 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
-
get
public static EntityField.Visibility get(int flags)
-
-