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_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.
1126 1127 1128 |
# File 'lib/oci8/metadata.rb', line 1126 def arguments @arguments ||= list_arguments.to_a end |
#encapsulation ⇒ Object
encapsulation level of the method. Values are :public or :private.
1038 1039 1040 1041 1042 1043 |
# File 'lib/oci8/metadata.rb', line 1038 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
1052 1053 1054 |
# File 'lib/oci8/metadata.rb', line 1052 def has_result? __boolean(OCI_ATTR_HAS_RESULT) end |
#inspect ⇒ Object
:nodoc:
1130 1131 1132 |
# File 'lib/oci8/metadata.rb', line 1130 def inspect # :nodoc: "#<#{self.class.name}: #{name}>" end |
#is_constructor? ⇒ Boolean
indicates method is a constructor
1057 1058 1059 |
# File 'lib/oci8/metadata.rb', line 1057 def is_constructor? __boolean(OCI_ATTR_IS_CONSTRUCTOR) end |
#is_destructor? ⇒ Boolean
indicates method is a destructor
1062 1063 1064 |
# File 'lib/oci8/metadata.rb', line 1062 def is_destructor? __boolean(OCI_ATTR_IS_DESTRUCTOR) end |
#is_final_method? ⇒ Boolean
indicates this is a final method
1107 1108 1109 |
# File 'lib/oci8/metadata.rb', line 1107 def is_final_method? __boolean(OCI_ATTR_IS_FINAL_METHOD) end |
#is_instantiable_method? ⇒ Boolean
indicates this is an instantiable method
1112 1113 1114 |
# File 'lib/oci8/metadata.rb', line 1112 def is_instantiable_method? __boolean(OCI_ATTR_IS_INSTANTIABLE_METHOD) end |
#is_map? ⇒ Boolean
indicates method is a map method
1077 1078 1079 |
# File 'lib/oci8/metadata.rb', line 1077 def is_map? __boolean(OCI_ATTR_IS_MAP) end |
#is_operator? ⇒ Boolean
indicates method is an operator
1067 1068 1069 |
# File 'lib/oci8/metadata.rb', line 1067 def is_operator? __boolean(OCI_ATTR_IS_OPERATOR) end |
#is_order? ⇒ Boolean
Indicates method is an order method
1082 1083 1084 |
# File 'lib/oci8/metadata.rb', line 1082 def is_order? __boolean(OCI_ATTR_IS_ORDER) end |
#is_overriding_method? ⇒ Boolean
indicates this is an overriding method
1117 1118 1119 |
# File 'lib/oci8/metadata.rb', line 1117 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.
1087 1088 1089 |
# File 'lib/oci8/metadata.rb', line 1087 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.
1092 1093 1094 |
# File 'lib/oci8/metadata.rb', line 1092 def is_rnps? __boolean(OCI_ATTR_IS_RNPS) end |
#is_selfish? ⇒ Boolean
indicates method is selfish
1072 1073 1074 |
# File 'lib/oci8/metadata.rb', line 1072 def is_selfish? __boolean(OCI_ATTR_IS_SELFISH) end |
#is_wnds? ⇒ Boolean
indicates “Write No Data State”(does not modify tables) is set.
1097 1098 1099 |
# File 'lib/oci8/metadata.rb', line 1097 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.
1102 1103 1104 |
# File 'lib/oci8/metadata.rb', line 1102 def is_wnps? __boolean(OCI_ATTR_IS_WNPS) end |
#name ⇒ Object
Name of method (procedure or function)
1032 1033 1034 |
# File 'lib/oci8/metadata.rb', line 1032 def name attr_get_string(OCI_ATTR_NAME) end |