Retrieves the Int value corresponding to the given key

Returns the def_value if none or if it's the wrong value type

Property definitions

android $ Bundle :: int
	# Retrieves the `Int` value corresponding to the given key
	# Returns the `def_value` if none or if it's the wrong value type
	fun int(key: String, def_value: Int): Int
	do
		sys.jni_env.push_local_frame(1)
		var return_value =
			native_bundle.get_long_with_def_value(key.to_java_string, def_value)
		sys.jni_env.pop_local_frame
		return return_value
	end
lib/android/bundle/bundle.nit:581,2--590,4