org.jruby.common
Enum IRubyWarnings.ID
java.lang.Object
java.lang.Enum<IRubyWarnings.ID>
org.jruby.common.IRubyWarnings.ID
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<IRubyWarnings.ID>
- Enclosing interface:
- IRubyWarnings
public static enum IRubyWarnings.ID
- extends java.lang.Enum<IRubyWarnings.ID>
Method Summary |
java.lang.String |
getID()
|
static IRubyWarnings.ID |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static IRubyWarnings.ID[] |
values()
Returns an array containing the constants of this enum type, in
the order they're declared. |
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
AMBIGUOUS_ARGUMENT
public static final IRubyWarnings.ID AMBIGUOUS_ARGUMENT
ACCESSOR_NOT_INITIALIZED
public static final IRubyWarnings.ID ACCESSOR_NOT_INITIALIZED
ARGUMENT_AS_PREFIX
public static final IRubyWarnings.ID ARGUMENT_AS_PREFIX
ARGUMENT_EXTRA_SPACE
public static final IRubyWarnings.ID ARGUMENT_EXTRA_SPACE
ASSIGNMENT_IN_CONDITIONAL
public static final IRubyWarnings.ID ASSIGNMENT_IN_CONDITIONAL
BIGNUM_FROM_FLOAT_RANGE
public static final IRubyWarnings.ID BIGNUM_FROM_FLOAT_RANGE
BLOCK_BEATS_DEFAULT_VALUE
public static final IRubyWarnings.ID BLOCK_BEATS_DEFAULT_VALUE
BLOCK_NOT_ACCEPTED
public static final IRubyWarnings.ID BLOCK_NOT_ACCEPTED
BLOCK_UNUSED
public static final IRubyWarnings.ID BLOCK_UNUSED
CONSTANT_ALREADY_INITIALIZED
public static final IRubyWarnings.ID CONSTANT_ALREADY_INITIALIZED
CONSTANT_BAD_REFERENCE
public static final IRubyWarnings.ID CONSTANT_BAD_REFERENCE
CVAR_FROM_TOPLEVEL_SINGLETON_METHOD
public static final IRubyWarnings.ID CVAR_FROM_TOPLEVEL_SINGLETON_METHOD
DECLARING_SCLASS_VARIABLE
public static final IRubyWarnings.ID DECLARING_SCLASS_VARIABLE
DEPRECATED_METHOD
public static final IRubyWarnings.ID DEPRECATED_METHOD
DUMMY_VALUE_USED
public static final IRubyWarnings.ID DUMMY_VALUE_USED
END_IN_METHOD
public static final IRubyWarnings.ID END_IN_METHOD
ELSE_WITHOUT_RESCUE
public static final IRubyWarnings.ID ELSE_WITHOUT_RESCUE
EMPTY_IMPLEMENTATION
public static final IRubyWarnings.ID EMPTY_IMPLEMENTATION
ENV_VARS_FROM_CLI_METHOD
public static final IRubyWarnings.ID ENV_VARS_FROM_CLI_METHOD
FIXNUMS_NOT_SYMBOLS
public static final IRubyWarnings.ID FIXNUMS_NOT_SYMBOLS
FLOAT_OUT_OF_RANGE
public static final IRubyWarnings.ID FLOAT_OUT_OF_RANGE
GLOBAL_NOT_INITIALIZED
public static final IRubyWarnings.ID GLOBAL_NOT_INITIALIZED
GROUPED_EXPRESSION
public static final IRubyWarnings.ID GROUPED_EXPRESSION
INEFFECTIVE_GLOBAL
public static final IRubyWarnings.ID INEFFECTIVE_GLOBAL
INVALID_CHAR_SEQUENCE
public static final IRubyWarnings.ID INVALID_CHAR_SEQUENCE
IVAR_NOT_INITIALIZED
public static final IRubyWarnings.ID IVAR_NOT_INITIALIZED
MAY_BE_TOO_BIG
public static final IRubyWarnings.ID MAY_BE_TOO_BIG
MISCELLANEOUS
public static final IRubyWarnings.ID MISCELLANEOUS
MULTIPLE_VALUES_FOR_BLOCK
public static final IRubyWarnings.ID MULTIPLE_VALUES_FOR_BLOCK
NEGATIVE_NUMBER_FOR_U
public static final IRubyWarnings.ID NEGATIVE_NUMBER_FOR_U
NO_SUPER_CLASS
public static final IRubyWarnings.ID NO_SUPER_CLASS
PARENTHISE_ARGUMENTS
public static final IRubyWarnings.ID PARENTHISE_ARGUMENTS
PROXY_EXTENDED_LATE
public static final IRubyWarnings.ID PROXY_EXTENDED_LATE
STATEMENT_NOT_REACHED
public static final IRubyWarnings.ID STATEMENT_NOT_REACHED
LITERAL_IN_CONDITIONAL_RANGE
public static final IRubyWarnings.ID LITERAL_IN_CONDITIONAL_RANGE
REDEFINING_DANGEROUS
public static final IRubyWarnings.ID REDEFINING_DANGEROUS
REGEXP_IGNORED_FLAGS
public static final IRubyWarnings.ID REGEXP_IGNORED_FLAGS
REGEXP_LITERAL_IN_CONDITION
public static final IRubyWarnings.ID REGEXP_LITERAL_IN_CONDITION
SAFE_NOT_SUPPORTED
public static final IRubyWarnings.ID SAFE_NOT_SUPPORTED
STRUCT_CONSTANT_REDEFINED
public static final IRubyWarnings.ID STRUCT_CONSTANT_REDEFINED
SYMBOL_AS_INTEGER
public static final IRubyWarnings.ID SYMBOL_AS_INTEGER
SYSSEEK_BUFFERED_IO
public static final IRubyWarnings.ID SYSSEEK_BUFFERED_IO
SYSWRITE_BUFFERED_IO
public static final IRubyWarnings.ID SYSWRITE_BUFFERED_IO
SWALLOWED_IO_EXCEPTION
public static final IRubyWarnings.ID SWALLOWED_IO_EXCEPTION
TOO_MANY_ARGUMENTS
public static final IRubyWarnings.ID TOO_MANY_ARGUMENTS
UNDEFINING_BAD
public static final IRubyWarnings.ID UNDEFINING_BAD
USELESS_EXPRESSION
public static final IRubyWarnings.ID USELESS_EXPRESSION
VOID_VALUE_EXPRESSION
public static final IRubyWarnings.ID VOID_VALUE_EXPRESSION
values
public static final IRubyWarnings.ID[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(IRubyWarnings.ID c : IRubyWarnings.ID.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static IRubyWarnings.ID 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 name
getID
public java.lang.String getID()
Copyright © 2002-2007 JRuby Team. All Rights Reserved.