Package org.eclipse.packager.rpm
Enum VerifyFlags
- java.lang.Object
-
- java.lang.Enum<VerifyFlags>
-
- org.eclipse.packager.rpm.VerifyFlags
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<VerifyFlags>
public enum VerifyFlags extends java.lang.Enum<VerifyFlags>
Constants to identify the RPM verification flags. See https://github.com/ctron/rpm-builder/issues/41 The name of this enum is questionable. It should rather be "VerifyFlag" (singular), but I leave it this way, cf.FileFlags. The constants and their value are from http://ftp.rpm.org/api/4.14.0/group__rpmvf.html- Since:
- 0.15.2
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CAPSGROUPLINKTOMD5MODEMTIMERDEVSIZEUSERVERIFY_CONTEXTSVERIFY_DEPSVERIFY_DIGESTVERIFY_FILESVERIFY_FOR_CONFIGVERIFY_FOR_DOCSVERIFY_FOR_DUMPFILESVERIFY_FOR_LISTVERIFY_FOR_STATEVERIFY_HDRCHKVERIFY_PATCHESVERIFY_SCRIPTVERIFY_SIGNATURE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetValue()static VerifyFlagsvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static VerifyFlags[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MD5
public static final VerifyFlags MD5
-
SIZE
public static final VerifyFlags SIZE
-
LINKTO
public static final VerifyFlags LINKTO
-
USER
public static final VerifyFlags USER
-
GROUP
public static final VerifyFlags GROUP
-
MTIME
public static final VerifyFlags MTIME
-
MODE
public static final VerifyFlags MODE
-
RDEV
public static final VerifyFlags RDEV
-
CAPS
public static final VerifyFlags CAPS
-
VERIFY_CONTEXTS
public static final VerifyFlags VERIFY_CONTEXTS
-
VERIFY_FILES
public static final VerifyFlags VERIFY_FILES
-
VERIFY_DEPS
public static final VerifyFlags VERIFY_DEPS
-
VERIFY_SCRIPT
public static final VerifyFlags VERIFY_SCRIPT
-
VERIFY_DIGEST
public static final VerifyFlags VERIFY_DIGEST
-
VERIFY_SIGNATURE
public static final VerifyFlags VERIFY_SIGNATURE
-
VERIFY_PATCHES
public static final VerifyFlags VERIFY_PATCHES
-
VERIFY_HDRCHK
public static final VerifyFlags VERIFY_HDRCHK
-
VERIFY_FOR_LIST
public static final VerifyFlags VERIFY_FOR_LIST
-
VERIFY_FOR_STATE
public static final VerifyFlags VERIFY_FOR_STATE
-
VERIFY_FOR_DOCS
public static final VerifyFlags VERIFY_FOR_DOCS
-
VERIFY_FOR_CONFIG
public static final VerifyFlags VERIFY_FOR_CONFIG
-
VERIFY_FOR_DUMPFILES
public static final VerifyFlags VERIFY_FOR_DUMPFILES
-
-
Method Detail
-
values
public static VerifyFlags[] 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 (VerifyFlags c : VerifyFlags.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VerifyFlags 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
-
getValue
public int getValue()
-
-