Class: OCI8::Metadata::TypeMethod
Overview
Metadata for a type method.
This is returned by:
-
OCI8::Metadata::Type#type_methods
-
OCI8::Metadata::Type#map_method
-
OCI8::Metadata::Type#order_method
– How can I know whether FUNCTION or PROCEDURE? ++
Instance Method Summary collapse
-
#arguments ⇒ array of OCI8::Metadata::Argument
Returns argument information of the type method.
-
#encapsulation ⇒ Object
encapsulation level of the method.
-
#has_result? ⇒ Boolean
indicates method is has rsult.
-
#inspect ⇒ Object
:nodoc:.
-
#is_constructor? ⇒ Boolean
indicates method is a constructor.
-
#is_destructor? ⇒ Boolean
indicates method is a destructor.
-
#is_final_method? ⇒ Boolean
indicates this is a final method.
-
#is_instantiable_method? ⇒ Boolean
indicates this is an instantiable method.
-
#is_map? ⇒ Boolean
indicates method is a map method.
-
#is_operator? ⇒ Boolean
indicates method is an operator.
-
#is_order? ⇒ Boolean
Indicates method is an order method.
-
#is_overriding_method? ⇒ Boolean
indicates this is an overriding method.
-
#is_rnds? ⇒ Boolean
indicates “Read No Data State”(does not query database tables) is set.
-
#is_rnps? ⇒ Boolean
Indicates “Read No Package State”(does not reference the values of packaged variables) is set.
-
#is_selfish? ⇒ Boolean
indicates method is selfish.
-
#is_wnds? ⇒ Boolean
indicates “Write No Data State”(does not modify tables) is set.
-
#is_wnps? ⇒ Boolean
indicates “Write No Package State”(does not change the values of packaged variables) is set.
-
#name ⇒ Object
Name of method (procedure or function).
Methods inherited from Base
#obj_id, #obj_link, #obj_name, #obj_schema
Instance Method Details
#arguments ⇒ array of OCI8::Metadata::Argument
Returns argument information of the type method.
The first element is the return type in case of Function.
1129 1130 1131 |
# File 'lib/oci8/metadata.rb', line 1129 def arguments @arguments ||= list_arguments.to_a end |
#encapsulation ⇒ Object
encapsulation level of the method. Values are :public
or :private
.
1041 1042 1043 1044 1045 1046 |
# File 'lib/oci8/metadata.rb', line 1041 def encapsulation case attr_get_ub4(OCI_ATTR_ENCAPSULATION) when 0; :private when 1; :public end end |
#has_result? ⇒ Boolean
indicates method is has rsult
1055 1056 1057 |
# File 'lib/oci8/metadata.rb', line 1055 def has_result? __boolean(OCI_ATTR_HAS_RESULT) end |
#inspect ⇒ Object
:nodoc:
1133 1134 1135 |
# File 'lib/oci8/metadata.rb', line 1133 def inspect # :nodoc: "#<#{self.class.name}: #{name}>" end |
#is_constructor? ⇒ Boolean
indicates method is a constructor
1060 1061 1062 |
# File 'lib/oci8/metadata.rb', line 1060 def is_constructor? __boolean(OCI_ATTR_IS_CONSTRUCTOR) end |
#is_destructor? ⇒ Boolean
indicates method is a destructor
1065 1066 1067 |
# File 'lib/oci8/metadata.rb', line 1065 def is_destructor? __boolean(OCI_ATTR_IS_DESTRUCTOR) end |
#is_final_method? ⇒ Boolean
indicates this is a final method
1110 1111 1112 |
# File 'lib/oci8/metadata.rb', line 1110 def is_final_method? __boolean(OCI_ATTR_IS_FINAL_METHOD) end |
#is_instantiable_method? ⇒ Boolean
indicates this is an instantiable method
1115 1116 1117 |
# File 'lib/oci8/metadata.rb', line 1115 def is_instantiable_method? __boolean(OCI_ATTR_IS_INSTANTIABLE_METHOD) end |
#is_map? ⇒ Boolean
indicates method is a map method
1080 1081 1082 |
# File 'lib/oci8/metadata.rb', line 1080 def is_map? __boolean(OCI_ATTR_IS_MAP) end |
#is_operator? ⇒ Boolean
indicates method is an operator
1070 1071 1072 |
# File 'lib/oci8/metadata.rb', line 1070 def is_operator? __boolean(OCI_ATTR_IS_OPERATOR) end |
#is_order? ⇒ Boolean
Indicates method is an order method
1085 1086 1087 |
# File 'lib/oci8/metadata.rb', line 1085 def is_order? __boolean(OCI_ATTR_IS_ORDER) end |
#is_overriding_method? ⇒ Boolean
indicates this is an overriding method
1120 1121 1122 |
# File 'lib/oci8/metadata.rb', line 1120 def is_overriding_method? __boolean(OCI_ATTR_IS_OVERRIDING_METHOD) end |
#is_rnds? ⇒ Boolean
indicates “Read No Data State”(does not query database tables) is set.
1090 1091 1092 |
# File 'lib/oci8/metadata.rb', line 1090 def is_rnds? __boolean(OCI_ATTR_IS_RNDS) end |
#is_rnps? ⇒ Boolean
Indicates “Read No Package State”(does not reference the values of packaged variables) is set.
1095 1096 1097 |
# File 'lib/oci8/metadata.rb', line 1095 def is_rnps? __boolean(OCI_ATTR_IS_RNPS) end |
#is_selfish? ⇒ Boolean
indicates method is selfish
1075 1076 1077 |
# File 'lib/oci8/metadata.rb', line 1075 def is_selfish? __boolean(OCI_ATTR_IS_SELFISH) end |
#is_wnds? ⇒ Boolean
indicates “Write No Data State”(does not modify tables) is set.
1100 1101 1102 |
# File 'lib/oci8/metadata.rb', line 1100 def is_wnds? __boolean(OCI_ATTR_IS_WNDS) end |
#is_wnps? ⇒ Boolean
indicates “Write No Package State”(does not change the values of packaged variables) is set.
1105 1106 1107 |
# File 'lib/oci8/metadata.rb', line 1105 def is_wnps? __boolean(OCI_ATTR_IS_WNPS) end |
#name ⇒ Object
Name of method (procedure or function)
1035 1036 1037 |
# File 'lib/oci8/metadata.rb', line 1035 def name attr_get_string(OCI_ATTR_NAME) end |